updateContact
Modify contact details in Omnisend, including subscription status, personal information, and custom properties. Ensure accurate and up-to-date data for effective marketing workflows.
Instructions
Update an existing contact's information. Can modify subscription status, personal details, and custom properties.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
contactData | Yes | Contact data | |
contactId | Yes | Contact ID |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"contactData": {
"additionalProperties": true,
"description": "Contact data",
"properties": {},
"type": "object"
},
"contactId": {
"description": "Contact ID",
"type": "string"
}
},
"required": [
"contactId",
"contactData"
],
"type": "object"
}