Skip to content
Management API Reference

List roles of an organization

get/v2/organizations/{slug}/roles

Returns a list of org-level roles for the organization.

OAuth scopes

  • organizations:read

Path parameters

  • slug
    Required
    string

    Organization slug

Response codes

  • 200
  • 401
  • 403
  • 429

Response (200)

1
{
2
"data": [
3
{
4
"type": "organization_role",
5
"id": null,
6
"attributes": {
7
"name": "developer"
8
}
9
}
10
]
11
}