Sign in

Update contact

documented

Update details for an existing contact identified by its Evenium ID.

PUT /api/1/contacts/{contactId}Contactsno implementation yet0 runs
No 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/{{$contactId}}" \
  -X PUT \
  -H "Accept: application/json" \
  -H "Content-Type: application/json" \
  -H "X-Evenium-Token: {{OAUTH2_ACCESS_TOKEN}}" \
  -d '{"email": "{{$email}}", "firstName": "{{$firstName}}", "lastName": "{{$lastName}}", "company": "{{$company}}", "fields": [{"name": "MOBILE_PHONE_NUMBER", "value": "{{$mobilePhone}}"}, {"name": "COMPANY_DEPT", "value": "{{$department}}"}]}'