Create contact
documentedCreate a new contact in the user’s personal or a team’s contacts.
POST /api/v1/contacts.createContactsno implementation yet0 runsNo implementation yet. Run it to have the agent write one, or open a pull request with your own.
Seed example (keychains curl)
npx -y keychains@latest curl "https://api.contactsplus.com/api/v1/contacts.create" \
-X POST \
-H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{ "contact": { "contactData": { "addresses": [ { "type": "home", "street": "{{$street}}", "city": "{{$city}}", "region": "{{$region}}", "postalCode": "{{$postalCode}}", "country": "{{$country}}" } ], "name": { "givenName": "{{$firstName}}", "familyName": "{{$lastName}}" }, "emails": [ { "type": "work", "value": "{{$email}}" } ], "phoneNumbers": [ { "type": "mobile", "value": "{{$phone}}" } ] } }, "teamId": "{{$teamId}}" }'