Skip to main content
POST
/
auth
/
logout
Logout current session
curl --request POST \
  --url https://core.cyberun.cloud/api/v1/auth/logout \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "refresh_token": "eyJhbGciOiJIUzI1NiIs..."
}
'
{
  "is_success": true
}

Documentation Index

Fetch the complete documentation index at: https://docs.cyberun.cloud/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

User session JWT (Bearer ). Must be paired with the X-Team-ID request header on team-scoped endpoints so the server knows which team's resources to operate on.

Body

application/json
refresh_token
string
required

The refresh token to invalidate.

Example:

"eyJhbGciOiJIUzI1NiIs..."

Response

Logged out

is_success
boolean
required

Always true when the action completed successfully.

Example:

true