hubspot-list-workflows
Retrieve a paginated list of workflows from a HubSpot account, including ID, name, type, and status. Use the 'limit' parameter to control results per page and 'after' for pagination.
Instructions
🎯 Purpose:
1. This tool retrieves a paginated list of workflows from the HubSpot account.
🧭 Usage Guidance:
1. Use the "limit" parameter to control the number of results returned per page.
2. For pagination, use the "after" parameter with the value from the previous response's paging.next.after.
3. This endpoint returns essential workflow information including ID, name, type, and status.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
after | No | Cursor token to fetch the next page of results. Use the paging.next.after value from the previous response. | |
limit | No | The maximum number of workflows to return per page (1-100). |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"after": {
"description": "Cursor token to fetch the next page of results. Use the paging.next.after value from the previous response.",
"type": "string"
},
"limit": {
"default": 20,
"description": "The maximum number of workflows to return per page (1-100).",
"maximum": 100,
"minimum": 1,
"type": "number"
}
},
"type": "object"
}