Skip to main content
GET
/
payment
/
intents
/
{paymentIntentId}
/
countries
/
{countryCode}
/
methods
List payment methods available for a country
curl --request GET \
  --url https://api.orqex.com/v1/payment/intents/{paymentIntentId}/countries/{countryCode}/methods \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "value": "momo_mtn",
      "label": "MTN Mobile Money",
      "description": "<string>",
      "icon_url": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

Project secret key, e.g. sk_live_..., sent as Authorization: Bearer sk_....

Path Parameters

paymentIntentId
string
required

Public payment intent id, e.g. pi_....

countryCode
string
required

ISO 3166-1 alpha-2 country code (e.g. CI).

Required string length: 2

Query Parameters

currency
string

Optional. Narrow methods to a single currency (ISO 4217, e.g. XOF).

Required string length: 3

Response

OK

data
object[]

Payment methods ranked by payer preference.