curl --request POST \
--url https://api.example.com/api/v1/conversations/ \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"user_id": "<string>",
"title": "<string>",
"status": "active",
"project_ids": [
"<string>"
],
"agent_ids": [
"<string>"
]
}
'{
"message": "<string>",
"conversation_id": "<string>"
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Whether to hide this conversation from the web UI
curl --request POST \
--url https://api.example.com/api/v1/conversations/ \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"user_id": "<string>",
"title": "<string>",
"status": "active",
"project_ids": [
"<string>"
],
"agent_ids": [
"<string>"
]
}
'{
"message": "<string>",
"conversation_id": "<string>"
}