v1

latestOpenAPI 3.0.12026-07-2412598.8 KB
Contacts

Create Contacts

The Create Contact (Async) API allows you to create contacts in the system without waiting for each contact to be processed immediately. It supports adding multiple contacts, defining attributes, and assigning them to audience lists or groups. Since this API works asynchronously, it processes the data in the background after accepting the request. The response only confirms that the request has been received successfully, it does not indicate that contact creation is complete.

post/contact/create

Headers

api-keystring required

API key for authentication. You must have unique & valid api-key

Content-Typestring required

Specifies the request content type. Must be application/json.

Request body

Example request

{
  "data": {
    "contact_type": "identified",
    "contacts": [
      {
        "attributes": {
          "FIRST_NAME": "John",
          "AGE": "30"
        }
      }
    ]
  }
}

Response

Success Response: The request was successfully submited, and processing will happen asynchronously.

request_idstring required

Unique request id of request.

code200 | 400 | 401 | 500 required

Response status Code.

status'success' | 'failed' required

Status of API request.

descriptionstring required

API response description.

All 12 operations