search_contacts_by_emails
Find specific contacts in your SendGrid account using their email addresses to manage and organize your email marketing lists effectively.
Instructions
Search for specific contacts by their email addresses
Input Schema
Name | Required | Description | Default |
---|---|---|---|
emails | Yes | Array of email addresses to search for |
Input Schema (JSON Schema)
{
"properties": {
"emails": {
"description": "Array of email addresses to search for",
"items": {
"format": "email",
"type": "string"
},
"type": "array"
}
},
"required": [
"emails"
],
"type": "object"
}