Skip to main content
GET
/
customers
/
{customerAccountNumber}
/
cardTypes
Get card types for a customer
curl --request GET \
  --url https://apigwuat.corpay.com/customers/{customerAccountNumber}/cardTypes \
  --header 'Authorization: Bearer <token>'
[
  {
    "cardTypeId": 1,
    "cardTypeName": "BE EV",
    "cardTypeDescription": "BE EV Card",
    "defaultPurchaseCategoryId": 1,
    "purchaseCategoryName": "EV Only",
    "isEV": true
  }
]

Documentation Index

Fetch the complete documentation index at: https://api.corpay.com/llms.txt

Use this file to discover all available pages before exploring further.

Performance expectations:
p50: 160 ms, p99: 500 ms.
Measured on successful requests (2xx), server-side only.
How to interpret these metrics

Authorizations

Authorization
string
header
required

Use OAuth2 client credentials to obtain a bearer token.

UAT token endpoint: POST https://apigwuat.corpay.com/keycloak/realms/longship/protocol/openid-connect/token

Example:

curl --location 'https://apigwuat.corpay.com/keycloak/realms/longship/protocol/openid-connect/token' \
--header 'accept: application/json' \
--data-urlencode 'grant_type=client_credentials' \
--data-urlencode 'client_id=.......' \
--data-urlencode 'client_secret=......'

Path Parameters

customerAccountNumber
string
required

Response

List of card types

cardTypeId
integer
cardTypeName
string
cardTypeDescription
string
defaultPurchaseCategoryId
integer
purchaseCategoryName
string
isEV
boolean