Roles
Get Roles
API Reference
Endpoints
- Actions
- Agents
- Call Now
- Calls
- Campaigns
- Chat
- Chat Widget
- Knowledge Base
- Dispositions
- Lead Lists
- Leads
- Mentions
- Phone Numbers
- Reports
- Roles
- Scripts
- Voices
- Webhooks
Roles
Get Roles
GET
/
v1
/
roles
curl --request GET \
--url https://api.eqho.ai/v1/roles \
--header 'X-API-KEY: <api-key>'
{
"roles": [
{
"description": "Help customers with their problems and concerns.",
"markdown": {
"sections": [
{
"content": "Help customers with their problems and concerns.",
"level": 2,
"subsections": [
{
"content": "Help customers with their problems and concerns.",
"level": 3,
"title": "Subsection 1"
}
],
"title": "Instructions"
}
]
},
"name": "Customer Support"
}
]
}
Authorizations
Response
200 - application/json
Successful Response
A list of RoleModel
instances.
Was this page helpful?
curl --request GET \
--url https://api.eqho.ai/v1/roles \
--header 'X-API-KEY: <api-key>'
{
"roles": [
{
"description": "Help customers with their problems and concerns.",
"markdown": {
"sections": [
{
"content": "Help customers with their problems and concerns.",
"level": 2,
"subsections": [
{
"content": "Help customers with their problems and concerns.",
"level": 3,
"title": "Subsection 1"
}
],
"title": "Instructions"
}
]
},
"name": "Customer Support"
}
]
}