Skip to main content
POST
/
conversations
/
{conversationId}
/
responses
Create response
curl --request POST \
  --url https://api.helloannie.com/v1/conversations/{conversationId}/responses \
  --header 'Content-Type: application/json' \
  --data '
{
  "message": "<string>"
}
'
{
  "success": true,
  "data": {
    "message": "<string>",
    "messageId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "createdAt": "2023-11-07T05:31:56Z",
    "toolCalls": [
      {
        "toolName": "<string>",
        "success": true
      }
    ]
  }
}

Path Parameters

conversationId
string<uuid>
required

The ID of the conversation to create a response for

Body

Request body for creating a response

message
string
required

The user message to send to the conversation

Minimum string length: 1

Response

Response returned when creating a response

success
enum<boolean>
required
Available options:
true
data
object
required

The response data