DELETE /idps

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

application/json

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

  • 204

    The identity provider was deleted.

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