TchokoPay
API Reference

List channels

GET /v1/channels — check what payment channels are available to you.

GET/v1/channels

Returns 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 }
]
FieldDescription
providerCodeInternal provider identifier.
methodPayment method — MOMO, ORANGE, etc.
countryISO country code this channel serves.
availableWhether this channel currently works for your account.
reasonnull when available is true. Otherwise "not_yet_enabled" (this channel isn't open platform-wide yet) or "restricted" (specifically disabled for your account).

On this page