1. Public Endpoints
KyzoAI
  • KyzoAI
    • Public Endpoints
      • Place Call
        POST
      • Get Agents
        GET
      • Get Campaigns
        GET
    • Schemas
      • kyzo-place-call-api
  1. Public Endpoints

Get Agents

GET
/organizations/{{organizationId}}/agents/external

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************

Responses

🟢200Success
application/json
Bodyapplication/json

🟠401Unauthorized
🟠403Forbidden
🔴500Internal Server Error
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --globoff '/organizations/{{organizationId}}/agents/external' \
--header 'Authorization: Bearer <token>'
Response Response Example
200 - Example 1
[
    {
        "agentId": "665f1c2e9a3b4d0012ab34cd",
        "agentName": "Real Estate Outreach Agent"
    },
    {
        "agentId": "665f1c2e9a3b4d0012ab9999",
        "agentName": "Support Callback Agent"
    }
]
Modified at 2026-06-12 20:28:24
Previous
Place Call
Next
Get Campaigns
Built with