Conversation
User
Organization
Calendar
Organization
List Roles
Returns a list of roles
GET
/
organizations
/
roles
curl --request GET \
--url http://api.attention.tech/v2/organizations/roles \
--header 'Authorization: <api-key>'
{
"data": [
{
"name": "Admin",
"type": "ADMIN",
"uuid": "84e67f54-5157-442b-a2b3-8b9c728b2fef"
},
{
"name": "Sales Rep",
"type": "SALES_REP",
"uuid": "55906d03-2849-4c3c-a67f-da07a6300de4"
}
]
}
Authorizations
Response
200
application/json
Roles successfully returned
The response is of type object
.
Was this page helpful?
curl --request GET \
--url http://api.attention.tech/v2/organizations/roles \
--header 'Authorization: <api-key>'
{
"data": [
{
"name": "Admin",
"type": "ADMIN",
"uuid": "84e67f54-5157-442b-a2b3-8b9c728b2fef"
},
{
"name": "Sales Rep",
"type": "SALES_REP",
"uuid": "55906d03-2849-4c3c-a67f-da07a6300de4"
}
]
}
Assistant
Responses are generated using AI and may contain mistakes.