delete_contact
Remove contacts from your SendGrid account by specifying their unique IDs to maintain clean and current contact lists.
Instructions
Delete contacts by IDs
Input Schema
Name | Required | Description | Default |
---|---|---|---|
contact_ids | Yes | Array of contact IDs to delete |
Input Schema (JSON Schema)
{
"properties": {
"contact_ids": {
"description": "Array of contact IDs to delete",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"contact_ids"
],
"type": "object"
}