getContact
Retrieve detailed contact information using a unique identifier to enhance personalization and management within the Omnisend marketing platform.
Instructions
Retrieve detailed information about a specific contact by their unique identifier.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
contactId | Yes | Contact ID |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"contactId": {
"description": "Contact ID",
"type": "string"
}
},
"required": [
"contactId"
],
"type": "object"
}