v1

latestOpenAPI 3.1.02026-07-241653251.3 MB
SDK Authorization

Revoke a client access token

Revokes a client access token previously issued via /client_auth_token, preventing it from being used to initialize SDK modules. The platform authenticates to this endpoint with its own HMAC credentials.

post/revoke_auth_token

Headers

X-SCX-SIGNEDstring required

HMAC-SHA256 signature of the request, base64-encoded. See the Authentication guide for the exact signing formula.

X-SCX-TIMESTAMPstring required
Example:1678901234

Current Unix timestamp in seconds. Must be within 60 seconds of server time or the request is rejected.

Request body

tokenstring required

The client access token to revoke.

Example request

{
  "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiaWF0IjoxNTE2MjM5MDIyfQ.SflKxwRJSMeKKF2QT4fwpMeJf36POk6yJV_adQssw5c"
}

Response

Client access token successfully revoked. Response body is empty.