DELETE /api/v2/user

This endpoint is to log out current user session

Responses

  • 200 application/json

    Success

    Hide response attributes Show response attributes object
    • success boolean

      Default value is true.

    • message string
DELETE /api/v2/user
curl \
 --request DELETE 'https://api.fincalc.co.uk/api/v2/user' \
 --header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
  "success": true,
  "message": "Session destroyed successfully."
}