# Clear user

Clears the user context for all subsequent events.

Endpoint: POST /action/clear-user
Security: risk_access_token

## Request fields (application/json):

  - `session_token` (string, required)
    A token returned by the SDK for the device session established upon SDK initialization.

  - `secured_session_token` (string, required)
    A cryptographically signed token returned by the SDK's `getSecureSessionToken()` method. Provides enhanced security through device binding and anti-replay protection.

## Response 201 fields (application/json):

  - `success` (boolean)
    Defines if the operation was successful.
    Example: true

  - `message` (string)
    A human-readable confirmation message.
    Example: User has been cleared.

