list_contacts
Retrieve all contacts from your SendGrid account with pagination support to manage large contact lists efficiently.
Instructions
List all contacts with optional pagination
Input Schema
Name | Required | Description | Default |
---|---|---|---|
page_size | No | Number of contacts to return (max 1000) | |
page_token | No | Token for pagination |
Input Schema (JSON Schema)
{
"properties": {
"page_size": {
"default": 100,
"description": "Number of contacts to return (max 1000)",
"type": "number"
},
"page_token": {
"description": "Token for pagination",
"type": "string"
}
},
"type": "object"
}