This API endpoint handles the revocation of authentication tokens. It is crucial for maintaining the security and integrity of the authentication system.

Usage

To revoke an authentication token, send a GET request to /en/docs/api/auth/revocation.

Parameters

  • token: The authentication token to be revoked.

Example

curl -X GET "https://example.com/en/docs/api/auth/revocation?token=abc123"

Response

A successful response will return a 200 status code with a JSON object indicating the success of the operation.

{
  "status": "success",
  "message": "Authentication token revoked successfully."
}

For more information on authentication and security, please visit our Authentication Guide.

Security Shield