curl --request GET \
--url https://api.hubapi.com/conversations/conversations/2026-09-beta/channels \
--header 'Authorization: Bearer <token>'{
"results": [
{
"id": "<string>",
"name": "<string>"
}
],
"total": 123,
"paging": {
"next": {
"after": "<string>",
"link": "<string>"
},
"prev": {
"before": "<string>",
"link": "<string>"
}
}
}Retrieve a list of channels available in the HubSpot account. This endpoint supports pagination and sorting, allowing you to manage and organize the channel data effectively. Use this endpoint to access detailed information about each channel, which can be useful for integrating or managing communication platforms within your HubSpot environment.
curl --request GET \
--url https://api.hubapi.com/conversations/conversations/2026-09-beta/channels \
--header 'Authorization: Bearer <token>'{
"results": [
{
"id": "<string>",
"name": "<string>"
}
],
"total": 123,
"paging": {
"next": {
"after": "<string>",
"link": "<string>"
},
"prev": {
"before": "<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.
An integer specifying the default number of results to return per page.
The maximum number of results to display per page.
An array of fields to sort the results by.
Was this page helpful?