Card scheme definitions
List card scheme definitions
Account updater
Buyers - Payment methods
Payment methods
Payment methods - Payment service tokens
Payment methods - Network tokens
Buyers - Gift cards
Buyers - Shipping details
Card scheme definitions
Digital wallets - Setup
Digital wallets - Sessions
Transactions
Refunds
Payment options
Payment service definitions
Payment services
Audit logs
Checkout sessions
Merchant accounts
Card scheme definitions
List card scheme definitions
Fetch a list of the definitions of each card scheme.
GET
/
card-scheme-definitions
curl --request GET \
--url https://api.{id}.gr4vy.app/card-scheme-definitions \
--header 'Authorization: Bearer <token>'
{
"items": [
{
"type": "card-scheme-definition",
"id": "visa",
"icon_url": "https://api.sandbox.example.gr4vy.app/assets/card-scheme-definitions/visa.svg",
"display_name": "Visa"
}
]
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Headers
The ID of the merchant account to use for this request.
Examples:
"default"
Response
200
application/json
Successful Response
The response is of type object
.
Was this page helpful?
curl --request GET \
--url https://api.{id}.gr4vy.app/card-scheme-definitions \
--header 'Authorization: Bearer <token>'
{
"items": [
{
"type": "card-scheme-definition",
"id": "visa",
"icon_url": "https://api.sandbox.example.gr4vy.app/assets/card-scheme-definitions/visa.svg",
"display_name": "Visa"
}
]
}