Skip to main content
POST
/
agent
/
v1
/
chat
/
{id}
/
question
/
{requestID}
/
reply
curl -X POST "https://api.case.dev/agent/v1/chat/%3Cstring%3E/question/%3Cstring%3E/reply" \ -H "Authorization: Bearer $CASEDEV_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "answers": [ [ "<string>" ] ] }'
{
  "statusCode": 123,
  "statusMessage": "<string>",
  "message": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.case.dev/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

API key starting with sk_case_

Path Parameters

id
string
required

Chat session ID

requestID
string
required

Pending question request ID

Body

application/json
answers
string[][]
required

Answer selections for each prompt element in the pending question

Response

Question answered successfully