curl --request GET \
--url https://api.hubapi.com/automation/2026-09-beta/flows \
--header 'Authorization: Bearer <token>'{
"results": [
{
"createdAt": "2023-11-07T05:31:56Z",
"flowType": "ACTION_SET",
"id": "<string>",
"isEnabled": true,
"objectTypeId": "<string>",
"revisionId": "<string>",
"updatedAt": "2023-11-07T05:31:56Z",
"name": "<string>",
"uuid": "<string>"
}
],
"paging": {
"next": {
"after": "<string>",
"link": "<string>"
}
}
}Retrieve a list of automation flows available in your HubSpot account. This endpoint supports pagination to navigate through large sets of flows, allowing you to specify the number of results per page and to continue from a specific point in the list using a cursor token.
curl --request GET \
--url https://api.hubapi.com/automation/2026-09-beta/flows \
--header 'Authorization: Bearer <token>'{
"results": [
{
"createdAt": "2023-11-07T05:31:56Z",
"flowType": "ACTION_SET",
"id": "<string>",
"isEnabled": true,
"objectTypeId": "<string>",
"revisionId": "<string>",
"updatedAt": "2023-11-07T05:31:56Z",
"name": "<string>",
"uuid": "<string>"
}
],
"paging": {
"next": {
"after": "<string>",
"link": "<string>"
}
}
}Supported products
Required Scopes
The access token received from the authorization server in the OAuth 2.0 flow.
The paging cursor token of the last successfully read resource will be returned as the paging.next.after JSON property of a paged response containing more results.
The maximum number of results to display per page.
Was this page helpful?