Query parameters

  • cursor string

    A cursor returned from a previous call to /idps

Responses

  • The trusted identity providers for your organization

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

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

GET /idps
curl \
 -X GET https://api.statebacked.dev/idps \
 -H "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
  "idps": [
    {
      "iss": "string",
      "aud": "string",
      "algs": [
        "HS256"
      ],
      "jwksUrl": "string",
      "mapping": {}
    }
  ],
  "cursor": "string"
}
Response examples (200)
{
  "idps": [
    {
      "iss": "string",
      "aud": "string",
      "algs": [
        "HS256"
      ],
      "jwksUrl": "string",
      "mapping": {}
    }
  ],
  "cursor": "string"
}