Skip to main content
GET
/
card-scheme-definitions
List card scheme definitions
using RestSharp;


var options = new RestClientOptions("https://api.sandbox.{id}.gr4vy.app/card-scheme-definitions");
var client = new RestClient(options);
var request = new RestRequest("");
request.AddHeader("Authorization", "Bearer <token>");
var response = await client.GetAsync(request);

Console.WriteLine("{0}", response.Content);
{
  "items": [
    {
      "type": "card-scheme-definition",
      "id": "visa",
      "icon_url": "https://api.sandbox.example.gr4vy.app/assets/card-scheme-definitions/visa.svg",
      "display_name": "Visa"
    }
  ]
}
This endpoint requires the card-scheme-definitions.read scope.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

Returns a list of card scheme definitions.

A list of available card scheme definitions.

items
Card Scheme Definition · object[]