crm_list_objects
Retrieve and filter HubSpot CRM records including contacts, companies, deals, and tickets with pagination support for efficient data management.
Instructions
List CRM objects of a specific type with optional filtering and pagination
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| objectType | Yes | ||
| properties | No | ||
| after | No | ||
| limit | No | ||
| archived | No |
Input Schema (JSON Schema)
{
"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"
}