Skip to main content
POST
https://{yourDomain}
/
oauth
/
global-token-revocation
/
connection
/
{connection_name}
Global Token Revocation
curl --request POST \
  --url https://{yourDomain}/oauth/global-token-revocation/connection/{connection_name} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "subject": {
    "format": "iss_sub",
    "iss": "<string>",
    "sub": "<string>"
  }
}
'

Authorizations

Authorization
string
header
required

Access token obtained from the authentication flow

Path Parameters

connection_name
string
required

The name of the connection for which you want to revoke the user's session.

Body

application/json
subject
object

Response

Successfully revoked session cookies and refresh tokens.