List roles of an organization
get
/v2/organizations/{slug}/rolesReturns a list of org-level roles for the organization.
OAuth scopes
- organizations:read
Path parameters
- slugRequiredstring
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}