POST
/
session
/
sign-out
curl --request POST \
--url https://{deploymentHost}/session/sign-out \
--header 'Content-Type: application/json' \
--data '{
"all_sessions": false
}'
{
"status": 200,
"message": "",
"data": {
"message": "Successfully signed out"
},
"session": {
"signin_attempts": [],
"signins": [],
"signup_attempts": [],
"active_signin": null
},
"errors": []
}

Authorizations

__session
string
cookie
required

Session cookie authentication for production deployments. The session token is automatically set as an HTTP-only, secure cookie.

Body

application/json

Response

200
application/json

Sign out completed successfully

The response is of type object.