getContact
Retrieve comprehensive contact details including emails, phone numbers, social links, and notes by inputting a contact ID using Clay's MCP server tools.
Instructions
Get details for a contact by id, including emails, social links, phone numbers, and notes.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
contact_id | Yes | The ID of the contact to get details for. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"contact_id": {
"description": "The ID of the contact to get details for.",
"type": "number"
}
},
"required": [
"contact_id"
],
"type": "object"
}