GET
/
logout
curl --request GET \
  --url https://api.helpyousponsor.com/v1/logout \
  --header 'Authorization: Bearer <token>' \
  --header 'client_id: <client_id>'
{
  "message": "Successfully logged out",
  "status": "success"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

client_id
string
required

Client ID to identify the user's client session

Response

200 - application/json
Logout successful
message
string
Example:

"Successfully logged out"

status
string
Example:

"success"