/api/v1/chat/room/{id}/problem
ChatSPC sets this to true when the model calls recordUnansweredQuery, and back to false on a follow-up turn that does provide an answer. Idempotent.
chatpostApiV1ChatRoomByIdProblem
Parameters
1 path · 1 query · 1 body
Path · 1
idstringRequiredChat room public id (cas__chat_room.external_id), 24 chars.
Length: 24–24
Query · 1
apiKeystringRequiredYour BizKitHub API key (passed as GET parameter).
Key format: A 32-character string matching: ^(PROD|DEV_|ROOT)[A-Za-z0-9]{28}$
Prefixes: PROD (production key), DEV_ (individual developer), ROOT (system key with no limits). Learn more
Body · 1
statebooleanRequiredtrue → stamp problem_marked_date = NOW() (flag as a problem case). false → clear it (model resolved the question after all).
Request
POST /api/v1/chat/room/{id}/problem
curl -X POST "https://api.bizkithub.com/api/v1/chat/room/ZUiVZuKwAaXNoT4nGUbnKR75/problem?apiKey=PRODPGrFxpGEtrOZfuWhnoJohUYBXuOE" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{
"state": false
}'Response
JSON payload
{
"state": "ok",
"success": true
}All response codes
1 status code documented
Need an API key?
All BizKitHub API endpoints require authentication via API key.