Create contact
documentedCreate a new contact in the address book.
POST /api/1/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://evenium.com/api/1/contacts" \
-X PUT \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-H "X-Evenium-Token: {{OAUTH2_ACCESS_TOKEN}}" \
-d '{"contact": [
{
"customId": "{{$customId}}",
"firstName": "{{$firstName}}",
"lastName": "{{$lastName}}",
"title": "{{$title}}",
"email": "{{$email}}",
"company": "{{$company}}",
"field": [
{"name": "MOBILE_PHONE_NUMBER", "value": "{{$mobile}}"},
{"name": "COMPANY_DEPT", "value": "{{$department}}"}
]
}
]}'