Request body for creating one or more contacts
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CreateContactsRequest", "title": "CreateContactsRequest", "type": "object", "description": "Request body for creating one or more contacts", "properties": { "contactKey": { "type": "string", "description": "Unique identifier for the contact", "example": "example_value" }, "attributeSets": { "type": "array", "description": "Attribute sets and values to assign to the contact", "items": { "$ref": "#/components/schemas/AttributeSet" }, "example": [] } }, "required": [ "contactKey" ] }