POST /api/operator/noop
Does nothing. Proves the token.
Surface: operator. Who may call: operator. Key: operator.noop.
Example request
curl -X POST https://caremcp.com/api/operator/noop \
-H "Authorization: Bearer <operator token>"
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
}