Skip to main content
POST
/
api
/
v1
/
calls
/
action
/
{uuid}
/
say
Make the agent say a message in the live call
curl --request POST \
  --url https://{subdomain}.mihu.ai/api/v1/calls/action/{uuid}/say \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "message": "Please hold while I check that for you.",
  "end_call_after_spoken": false
}
'
{
  "success": true,
  "message": "Say dispatched",
  "data": {}
}

Documentation Index

Fetch the complete documentation index at: https://developers.mindhunters.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Use a Bearer token to access these API endpoints. Example: "Bearer {your-token}"

Path Parameters

uuid
string<uuid>
required

Conversation UUID returned by POST /api/v1/call as conversation_uuid.

Body

application/json
message
string
required
Maximum string length: 2000
Example:

"Please hold while I check that for you."

end_call_after_spoken
boolean
default:false

If true, hang up after the message is fully spoken.

Response

Action dispatched

success
boolean
Example:

true

message
string
Example:

"Say dispatched"

data
object