UpdateContactRequest

Request body for updating contact attributes

AutomationContent ManagementCustomer JourneyDigital MarketingEmailMarketingMarketing AutomationMCPMobile MessagingPersonalizationSMSWebhook

Properties

Name Type Description
attributeSets array Attribute sets and values to update
View JSON Schema on GitHub

JSON Schema

salesforce-marketing-cloud-updatecontactrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UpdateContactRequest",
  "title": "UpdateContactRequest",
  "type": "object",
  "description": "Request body for updating contact attributes",
  "properties": {
    "attributeSets": {
      "type": "array",
      "description": "Attribute sets and values to update",
      "items": {
        "$ref": "#/components/schemas/AttributeSet"
      },
      "example": []
    }
  },
  "required": [
    "attributeSets"
  ]
}