API Reference
List channels
GET /v1/channels — check what payment channels are available to you.
GET
/v1/channelsReturns the payment channels currently available to your account — a good citizenship check before you assume a channel works, rather than discovering it's disabled mid-flow.
curl https://connect.tchokopay.com/v1/channels \
-H "Authorization: Bearer tchoko_live_..."Response
200 OK
[
{ "providerCode": "mtn_cm", "method": "MOMO", "country": "CM", "available": true, "reason": null }
]| Field | Description |
|---|---|
providerCode | Internal provider identifier. |
method | Payment method — MOMO, ORANGE, etc. |
country | ISO country code this channel serves. |
available | Whether this channel currently works for your account. |
reason | null when available is true. Otherwise "not_yet_enabled" (this channel isn't open platform-wide yet) or "restricted" (specifically disabled for your account). |
