v1

latestOpenAPI 3.0.0Proprietary2026-07-26130282259.8 KB
contacts

Create Email Address

Use this endpoint to add an email address to the list of addresses for a specific contact.

This endpoint is rate limited. Use the RateLimit-* response headers to check current limits and remaining quota.

post/contacts/{contactId}/email-addresses

Path parameters

contactIdstring uuid required

The contact's unique identifier

Request body

idstring uuid

The GUID of the Email Address.

_linkstring

The URI of the Email Address

addressstring email required

Contact email address

primaryboolean

Is this the primary email address for this contact?

type'Personal' | 'Work' | 'Other' required

Example request

{
  "id": "40ac2713-13eb-4c69-8780-eee57fc71cba",
  "_link": "https://api.acculynx.com/api/v2/contacts/d0b29a1b-6023-4a27-b028-25e85796c40b/email-addresses/40ac2713-13eb-4c69-8780-eee57fc71cba",
  "address": "contactmail@mail.com",
  "type": "Personal"
}

Response

Created

idstring uuid

The GUID of the Email Address.

_linkstring

The URI of the Email Address

Example response

{
  "id": "40ac2713-13eb-4c69-8780-eee57fc71cba",
  "_link": "https://api.acculynx.com/api/v2/contacts/d0b29a1b-6023-4a27-b028-25e85796c40b/email-addresses/40ac2713-13eb-4c69-8780-eee57fc71cba"
}