Update Contact
documentedUpdate an existing contact's details.
PUT /contacts/{contact_id}Contactsno 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.cc.email/v3/contacts/{{$contact_id}}" \
-X PUT \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
-d '{"email_address": {"address": "{{$email}}", "permission_to_send": "implicit"}, "update_source": "Account", "first_name": "{{$first_name}}", "last_name": "{{$last_name}}", "phone_numbers": [ {"phone_number": "{{$phone_number}}", "kind": "mobile"} ], "street_addresses": [ {"kind": "home", "street": "{{$street}}", "city": "{{$city}}", "state": "{{$state}}", "postal_code": "{{$postal_code}}", "country": "{{$country}}"} ] }'