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

    The token providers for your organization

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

        An identifier for a key

      • mapping object Required
        Hide mapping attribute Show mapping attribute object
        • 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 \
 -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"
}