Roles
Roles are a way to group users together. They can be used to grant permissions to a group of users, or to identify a group of users for other purposes, such as identifying staff members or those who have signed an NDA.
List roles
Returns all role objects.
Authentication
Service Integration with
user:read scope.Response
Show child attributes
nextPagestring (optional)nullable
A cursor for pagination across multiple pages of results. If this attribute is present, there are more results available. Use this value in the
nextPage parameter for the next request.curl https://reg.cces.dev/api/v0/roles \
-H "Authorization: Bearer <token>"
{
"data": [
{
"id": "1234",
"name": "staff"
},
],
"nextPage": null
}