Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
C#
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" } ] }
card-scheme-definitions.read
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Returns a list of card scheme definitions.
A list of available card scheme definitions.
Show child attributes
Was this page helpful?