CreateContactsRequest

Request body for creating one or more contacts

AutomationCustomer JourneyDigital MarketingEmailMarketingPersonalization

Properties

Name Type Description
contactKey string Unique identifier for the contact
attributeSets array Attribute sets and values to assign to the contact
View JSON Schema on GitHub

JSON Schema

salesforce-marketing-cloud-createcontactsrequest-schema.json Raw ↑
{
  "$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"
  ]
}