Skip to main content
POST
/
v2
/
private
/
user
/
logout
Sign Out
curl --request POST \
  --url https://api.crowdchange.dev/v2/private/user/logout \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "token": "<string>"
}
'
{
  "status": "ok"
}

Body

token
string
required
User’s access token.

Response

status
string
Status of the operation.
Other responses
StatusDescription
401Unauthorized
403Forbidden
{
  "status": "ok"
}