POST
/
executions
/
{executionId}
/
user-messages
Send user message to execution
curl --request POST \
  --url https://odyssey.asteroid.ai/agents/{version}/executions/{executionId}/user-messages \
  --header 'Content-Type: application/json' \
  --header 'X-Asteroid-Agents-Api-Key: <api-key>' \
  --data '{
  "message": "<string>"
}'
"User message added."

Authorizations

X-Asteroid-Agents-Api-Key
string
header
required

Path Parameters

executionId
string<uuid>
required

The unique identifier of the execution

Body

application/json

The message content to send

The body is of type object.

Response

201
text/plain

The request has succeeded and a new resource has been created as a result.

The response is of type enum<string>.

Available options:
User message added.