crm_list_objects
Retrieve CRM objects by type, filter results, and manage pagination using specified parameters for efficient data access in HubSpot MCP.
Instructions
List CRM objects of a specific type with optional filtering and pagination
Input Schema
Name | Required | Description | Default |
---|---|---|---|
after | No | ||
archived | No | ||
limit | No | ||
objectType | Yes | ||
properties | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"after": {
"type": "string"
},
"archived": {
"type": "boolean"
},
"limit": {
"maximum": 100,
"minimum": 1,
"type": "number"
},
"objectType": {
"enum": [
"companies",
"contacts",
"deals",
"tickets",
"products",
"line_items",
"quotes",
"custom"
],
"type": "string"
},
"properties": {
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"objectType"
],
"type": "object"
}