You can fetch a list of all roles in the workspace.
Roles define what a teammate can do in a workspace. The teammates endpoint returns the role a teammate holds, but only the roles that are currently assigned, and only their id and name. This endpoint lists every role in the workspace, each with its description.
Security
bearerAuth
Intercom-Versionstring(intercom_version_preview)
Preview Intercom API version. Used for closed beta endpoints or other features under managed availability.
Default:"Preview"
Value:"Preview"
Example:Preview
- The production API serverhttps://api.intercom.io/roles
- The european API serverhttps://api.eu.intercom.io/roles
- The australian API serverhttps://api.au.intercom.io/roles
curl -i -X GET \
https://api.intercom.io/roles \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Intercom-Version: Preview'successful
dataArray of objects(Role)
A list of role objects
Example:
[ { "type": "role", "id": "991267902", "name": "Support Lead", "description": "Can view and reply to conversations" } ]
Response
{ "type": "list", "data": [ { … } ] }