MCP tool: get_all_customer_contacts
Retrieves a paginated list of all customer contacts in the organization. This tool supports filtering by account ID and contact type, along with pagination for efficient data retrieval.
Example prompt
Input parameters
Name | Type | Required | Description |
---|---|---|---|
accountId | string | No | The identifier of the account to find contacts for |
contactType | string | No | Contact type of the customer contact to find |
page | number | No | Page number for pagination (default: 1) |
limit | number | No | Number of contacts per page (default: 10) |
Response fields
Below are the fields you may see in each customer contact object in the response:Field | Type | Description |
---|---|---|
id | string | Unique identifier of the customer contact |
firstName | string | First name of the customer contact |
lastName | string | Last name of the customer contact |
string | Email address of the customer contact | |
phoneNumber | string | Phone number of the customer contact |
avatarUrl | string | Avatar URL of the customer contact |
accounts | array | Array of associated accounts with id and name |
contactTypeId | string | ID of the contact type |
contactType | string | Name of the contact type (e.g., “Decision Maker”) |
customFieldValues | array | Custom field values for the contact |
metadata | object | Additional metadata for the contact |
createdAt | string (ISO8601) | Creation timestamp |
updatedAt | string (ISO8601) | Last update timestamp |