Create Contact
documentedCreate a new contact in the account.
POST /contactsContactsno 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" \
-X POST \
-H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-d '{"email_address": {"address": "{{$email}}", "permission_to_send": "implicit"}, "first_name": "{{$first_name}}", "last_name": "{{$last_name}}", "create_source": "Account"}'