Skip to main content
PATCH
/
api
/
v1
/
agents
/
{uuid}
/
interaction
Update interaction settings
curl --request PATCH \
  --url https://{subdomain}.mihu.ai/api/v1/agents/{uuid}/interaction \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data @- <<EOF
{
  "customer_speak_first": false,
  "inbound_first_message": "Hello, how can I help you today?",
  "outbound_first_message": "Hi, I'm calling about your enquiry.",
  "voice_mail_message": "Please call us back when you're available.",
  "end_call_message": "Thanks for calling. Goodbye!",
  "silence_message": "Are you still there?",
  "max_silence_prompts": 30
}
EOF
{
  "success": true,
  "message": "Interaction settings updated successfully",
  "data": {
    "customer_speak_first": false,
    "inbound_first_message": "Hello, how can I help you today?",
    "outbound_first_message": "Hi, I'm calling about your enquiry.",
    "voice_mail_message": "Please call us back when you're available.",
    "end_call_message": "Thanks for calling. Goodbye!",
    "silence_message": "Are you still there?",
    "max_silence_prompts": 30
  }
}

Documentation Index

Fetch the complete documentation index at: https://developers.mihu.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

Body

application/json

The body is of type any.

Response

Interaction settings updated