Get all payment method kinds that are enabled for the given authentication context. This endpoint is useful to check which payment method kinds a client is allowed to use.
GET
/2026-2/payment-method-kinds
curl \
--request GET 'https://api.pace.cloud/payment/2026-2/payment-method-kinds' \
--header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
"data": [
{
"icons": {
"dark": "https://cdn.pace.cloud/fuel-card-provider/dark.png",
"default": "https://cdn.pace.cloud/fuel-card-provider/default.png"
},
"implicit": false,
"label": "Fuel Card Provider",
"name": "FUEL_CARD_PROVIDER",
"twoFactorAuthentication": false
}
]
}