Delete an identity provider

DELETE /idps

Delete the identity provider and immediately reject any token exchange requests that provide tokens signed by the idp.

Body

Identity provider to delete

  • aud string

    Audience for the identity provider (at least one of aud or iss must be provided).

  • iss string

    Issuer for the identity provider (at least one of aud or iss must be provided).

Responses

  • The identity provider was deleted.

DELETE /idps
curl \
 -X DELETE https://api.statebacked.dev/idps \
 -H "Authorization: Bearer $ACCESS_TOKEN" \
 -H "Content-Type: application/json" \
 -d '{"aud":"string","iss":"string"}'
Request example
{
  "aud": "string",
  "iss": "string"
}
Request examples
{
  "aud": "string",
  "iss": "string"
}