POST /api/public/sign-out
Ends the session the bearer names. Without one, nothing happens.
Surface: public. Who may call: public. Key: public.signOut.
Example request
curl -X POST https://caremcp.com/api/public/sign-out
Input schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {}
}
Output schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"ok": {
"type": "boolean",
"const": true
}
},
"required": [
"ok"
],
"additionalProperties": false
}