Skip to main content
PATCH
/
api
/
v1
/
agents
/
{uuid}
/
normalizers
Update phone normalizers
curl --request PATCH \
  --url https://{subdomain}.mihu.ai/api/v1/agents/{uuid}/normalizers \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "outbound": {
    "default_prefix": "+90",
    "condition_length": 10,
    "condition_prefix": "0"
  },
  "inbound": {
    "default_prefix": null,
    "condition_length": null,
    "condition_prefix": null
  }
}
'
{
  "success": true,
  "message": "Normalizers updated successfully",
  "data": {
    "outbound": {
      "default_prefix": "+90",
      "condition_length": 10,
      "condition_prefix": "0"
    },
    "inbound": {
      "default_prefix": null,
      "condition_length": null,
      "condition_prefix": null
    }
  }
}

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

Normalizers updated