Users
User records, channel identities, and the current user.
curl -X GET "https://example.com/ext/hindclaw/users"[ { "id": "string", "display_name": "string", "email": "string", "is_active": true }]Authorization
HTTPBearer In: header
Request Body
application/json
TypeScript Definitions
Use the request body type in TypeScript.
Response Body
application/json
application/json
curl -X POST "https://example.com/ext/hindclaw/users" \ -H "Content-Type: application/json" \ -d '{ "id": "string", "display_name": "string" }'{ "id": "string", "display_name": "string", "email": "string", "is_active": true}Authorization
HTTPBearer In: header
Path Parameters
Response Body
application/json
application/json
curl -X GET "https://example.com/ext/hindclaw/users/string"{ "id": "string", "display_name": "string", "email": "string", "is_active": true}Authorization
HTTPBearer In: header
Path Parameters
Response Body
application/json
curl -X DELETE "https://example.com/ext/hindclaw/users/string"Authorization
HTTPBearer In: header
Path Parameters
Request Body
application/json
TypeScript Definitions
Use the request body type in TypeScript.
Response Body
application/json
application/json
curl -X PUT "https://example.com/ext/hindclaw/users/string" \ -H "Content-Type: application/json" \ -d '{}'{ "id": "string", "display_name": "string", "email": "string", "is_active": true}Authorization
HTTPBearer In: header
Path Parameters
Response Body
application/json
application/json
curl -X GET "https://example.com/ext/hindclaw/users/string/channels"[ { "provider": "string", "sender_id": "string" }]Authorization
HTTPBearer In: header
Path Parameters
Request Body
application/json
TypeScript Definitions
Use the request body type in TypeScript.
Response Body
application/json
application/json
curl -X POST "https://example.com/ext/hindclaw/users/string/channels" \ -H "Content-Type: application/json" \ -d '{ "provider": "string", "sender_id": "string" }'{ "provider": "string", "sender_id": "string"}Authorization
HTTPBearer In: header
Path Parameters
Response Body
application/json
curl -X DELETE "https://example.com/ext/hindclaw/users/string/channels/string/string"Return the caller's own profile including channels.
Args: _auth: Authenticated principal (user only, SA rejected).
Returns: MeProfileResponse with user record and channel list.
Authorization
HTTPBearer In: header
Response Body
application/json
curl -X GET "https://example.com/ext/hindclaw/me"{ "id": "string", "display_name": "string", "email": "string", "is_active": true, "channels": [ { "provider": "string", "sender_id": "string" } ]}true