get_contact
Retrieve detailed contact information from SendGrid using the contact ID to access email marketing data and manage subscriber profiles.
Instructions
Get detailed information about a specific contact by ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
contact_id | Yes | ID of the contact to retrieve |
Input Schema (JSON Schema)
{
"properties": {
"contact_id": {
"description": "ID of the contact to retrieve",
"type": "string"
}
},
"required": [
"contact_id"
],
"type": "object"
}