Skip to main content
GET
/
payment
/
intents
/
{paymentIntentId}
/
countries
List countries available for a payment
curl --request GET \
  --url https://api.orqex.com/v1/payment/intents/{paymentIntentId}/countries \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "code": "CI",
      "name": "Cote d'Ivoire",
      "flag": "https://cdn.orqex.com/flags/CI.svg"
    }
  ],
  "meta": {
    "total": 12,
    "supports_any_country": true
  }
}

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_....

Response

OK

data
object[]

Countries ranked by payer preference.

meta
object