hubspot_list_companies
Retrieve and paginate through HubSpot company records with customizable property selection for CRM data access and management.
Instructions
List companies in HubSpot with pagination
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| after | No | Pagination cursor for next page of results | |
| limit | No | Maximum number of companies to return (default 10, max 100) | |
| properties | No | List of properties to include in the results |
Input Schema (JSON Schema)
{
"properties": {
"after": {
"description": "Pagination cursor for next page of results",
"type": "string"
},
"limit": {
"default": 10,
"description": "Maximum number of companies to return (default 10, max 100)",
"type": "number"
},
"properties": {
"description": "List of properties to include in the results",
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
}