Skip to content
SIBISIBI Developers
Esc
navigateopen⌘Jpreview

Continue a task

Adds a message to an existing task and resumes asynchronous processing.

POST/api/agents/{agentId}/tasks/{taskId}/messages
Path parameters
agentIdstringrequired
Research Agent ID assigned to your organization.
taskIdstringrequired
Task ID returned when the task was created.
Request body
requiredapplication/json
messagestringrequired
A product model, part number, description, or follow-up answer.
min length 1
attachmentsAttachment[]
default: []
Show properties
Array of Attachment
typeanyrequired
urlstringrequired
An HTTP(S) URL or supported data URL.
mediaTypestringrequired
Media type of the file.
filenamestringrequired
Filename presented to Research Agent.
Responses
202Follow-up accepted.
statusanyrequired
taskIdstringrequired
statusUrlstring<uri>required
400The request body is invalid.
errorstringrequired
detailsobject
401The bearer token is missing or invalid.
errorstringrequired
403The authenticated user cannot access the requested agent.
errorstringrequired
404The task was not found for this user and agent.
errorstringrequired
Request
curl -X POST "https://agents.sibi.ai/api/agents/string/tasks/string/messages" \
  -H "Content-Type: application/json" \
  -d '{
  "message": "Manufacturer A"
}'
Response
{
  "status": "pending",
  "taskId": "string",
  "statusUrl": "<uri>"
}