Phonely · Example Payload

Phonely Get Agents Example

AIArtificial IntelligenceVoice AIVoice AgentsConversational AITelephonyPhoneCall CenterContact CenterSMSWebhooksWorkflow AutomationSchedulingCRM

Phonely Get Agents Example is an example object payload from Phonely, with 2 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

requestresponse

Example Payload

Raw ↑
{
  "request": {
    "method": "POST",
    "url": "https://app.phonely.ai/api/get-agents",
    "headers": {
      "X-Authorization": "phk_live_REPLACE_ME",
      "Content-Type": "application/json"
    },
    "body": {
      "uid": "user_01HABCDEFG"
    }
  },
  "response": {
    "status": 200,
    "body": [
      {
        "uid": "user_01HABCDEFG",
        "agentId": "agent_01HIJKLMNO",
        "name": "Front Desk Assistant",
        "country": "US",
        "businessPhoneNumber": "+14155551212"
      },
      {
        "uid": "user_01HABCDEFG",
        "agentId": "agent_01HPQRSTUV",
        "name": "Outbound Qualifier",
        "country": "US",
        "businessPhoneNumber": "+14155553434"
      }
    ]
  }
}