List the token providers configured for your org

GET /token-providers

Query parameters

  • cursor string

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

Responses

  • 200 application/json

    The token providers for your organization

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

        An identifier for a key

      • mapping object Required

        Additional properties are allowed.

    • 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 \
 --request GET 'https://api.statebacked.dev/token-providers' \
 --header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
  "tokenProviders": [
    {
      "service": "string",
      "keyId": "sbk_nXzdtCxESemgtxS5JX-LrA",
      "mapping": {}
    }
  ],
  "cursor": "string"
}