Conversations
Delete a conversation
Permanently deletes a conversation and its messages.
AuthorizationBearer <token>
Organization or project Access Key created in the Dynamiq console. Used for deployed-app (Runs API), AI Gateway, traces collector, and management API requests. Send as Authorization: Bearer <access-key>.
In: header
Path Parameters
conversation_id*string
Conversation UUID.
Response Body
application/json
application/json
application/json
curl -X DELETE "https://example.com/v1/conversations/497f6eca-6276-4993-bfeb-53cbbbba6f08"{
"message": "deleted"
}{
"error": {
"code": "unauthorized",
"message": "Unauthorized"
}
}{
"error": {
"code": "not_found",
"message": "Not Found"
}
}Get a conversation
Returns a single conversation.
Send a conversation message (SSE)
Sends a user message to a conversation and streams the assistant's response as Server-Sent Events. Each event is a JSON object with `id`, `type`, `sequence`, `timestamp`, and type-specific `data`; the stream ends after a terminal event (`run.completed`, `run.failed`, or `run.canceled`).