Skip to main content
POST
/
api
/
instances
/
{id}
/
logout
Full logout and clear session
curl --request POST \
  --url https://api.wappfy.io/api/instances/{id}/logout \
  --header 'Authorization: Bearer <token>'
{
  "message": "Operation completed successfully"
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string<uuid>
required

Instance ID

Response

Session cleared

message
string
required

Human-readable result message

Example:

"Operation completed successfully"