Passer au contenu principal
GET
/
conversations
/
conversations
/
2026-09-beta
/
channels
Lister les canaux
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

Autorisations

Authorization
string
header
requis

The access token received from the authorization server in the OAuth 2.0 flow.

Paramètres de requête

after
string

Le jeton de curseur de pagination de la dernière ressource lue avec succès sera renvoyé en tant que propriété JSON « paging.next.after » d'une réponse paginée contenant plus de résultats.

defaultPageLength
integer<int32>

Un entier spécifiant le nombre de résultats par page à renvoyer par défaut.

limit
integer<int32>

Le nombre maximum de résultats à afficher par page.

sort
string[]

Un tableau de champs pour trier les résultats.

Réponse

successful operation

results
object[]
requis
total
integer<int32>
requis
paging
object
Last modified on April 13, 2026