curl --request POST \
--url https://api.example.com/api/v1/conversations/{conversation_id}/message/ \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: multipart/form-data' \
--form 'content=<string>' \
--form 'node_ids=<string>' \
--form 'images=<string>' \
--form images.0.items='@example-file'{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Whether to stream the response
Session ID for reconnection
Previous human message ID for deterministic session ID
Stream cursor for replay
Successful Response
curl --request POST \
--url https://api.example.com/api/v1/conversations/{conversation_id}/message/ \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: multipart/form-data' \
--form 'content=<string>' \
--form 'node_ids=<string>' \
--form 'images=<string>' \
--form images.0.items='@example-file'{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}