Query parameters

  • cursor string

    A cursor returned from a previous call to /token-providers

Responses

  • The token providers for your organization

    Hide response attributes Show response attributes object
    • tokenProviders array[object] Required
      Hide tokenProviders attributes Show tokenProviders attributes
    • cursor string

      The cursor to use on the next call to retrieve the next page of token providers. If no cursor is returned, there are no more pages to retrieve.

GET /token-providers
curl \
 -X GET https://api.statebacked.dev/token-providers \
 -H "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
  "tokenProviders": [
    {
      "service": "string",
      "keyId": "sbk_nXzdtCxESemgtxS5JX-LrA",
      "mapping": {}
    }
  ],
  "cursor": "string"
}
Response examples (200)
{
  "tokenProviders": [
    {
      "service": "string",
      "keyId": "sbk_nXzdtCxESemgtxS5JX-LrA",
      "mapping": {}
    }
  ],
  "cursor": "string"
}