Skip to main content
GET
/
api
/
v1
/
conversations
/
{conversation_id}
/
task-status
Get Task Status
curl --request GET \
  --url https://api.example.com/api/v1/conversations/{conversation_id}/task-status \
  --header 'Authorization: Bearer <token>'
{
  "isActive": true,
  "sessionId": "<string>",
  "estimatedCompletion": 123,
  "conversationId": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

conversation_id
string
required

Response

Successful Response

isActive
boolean
required
sessionId
string
required
estimatedCompletion
integer
required
conversationId
string
required