Skip to main content
GET
/
api
/
v1
/
agents
/
{uuid}
/
channels
Channels and phone numbers for an agent
curl --request GET \
  --url https://{subdomain}.mihu.ai/api/v1/agents/{uuid}/channels \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "agent_uuid": "<string>",
    "name": "<string>",
    "channels": [
      "call"
    ],
    "phone_numbers": [
      {
        "phone_number": "<string>",
        "phone_number_uuid": "<string>",
        "channels": [
          "<string>"
        ]
      }
    ]
  }
}

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

Response

Success

success
boolean

Indicates whether the request completed successfully. True for successful responses; false for documented error responses.

data
object