v1
latestOpenAPI 3.0.12026-07-1351620.2 KBSubmit a conversation
Submits conversation data to the system for processing. This can be content like a call transcript, email thread, or chat conversation.
post/conversations
Request body
Example request
{
"id": "conversation-123",
"title": "Customer Support Request",
"source": "intercom",
"createdAt": "2024-01-01T00:00:00.000Z",
"updatedAt": "2024-01-01T00:00:00.000Z",
"contacts": [
{
"properties": {
"$contractValue": 100000
},
"account": {
"id": "account-789",
"properties": {
"$name": "Acme, Inc.",
"$domain": "acme.com",
"$contractValue": 100000
}
}
}
],
"messages": [
{
"id": "message-789",
"incoming": true,
"contactId": "user-456",
"content": "Hello! I'm having trouble...",
"createdAt": "2024-01-01T00:00:00.000Z"
}
]
}Response
Conversation submitted successfully.
Example response
{
"success": true
}