Skip to main content
Sends a follow-up message to a running task, or provides answers to questions the agent has asked via the ask_user tool.

Authentication

Requires a valid Bearer token.

Path Parameters

taskID
string
required
Task ID (UUID).

Request Body

message
string
required
The message to send to the agent.
ask_user_answers
object
Answers to specific questions from the agent’s ask_user tool call. Keys are question identifiers, values are the answers.
{
  "message": "Use Tailwind CSS for styling"
}
{
  "message": "Here are my answers",
  "ask_user_answers": {
    "framework": "React",
    "styling": "Tailwind CSS"
  }
}

Response

Returns 200 OK on success.

Errors

StatusDescription
400Bad Request — task is not in a state that accepts responses
401Unauthorized — missing or invalid token
404Not Found — task does not exist or you do not have access