Last updated 3 months ago
Unique ID
Name of Role
If true, this a Role defined and managed by the system.
const response = await fetch('/v1/roles/{roleId}', { method: 'GET', headers: { "Authorization": "Bearer JWT" }, }); const data = await response.json();
{ "id": "text", "name": "text", "is_system": false }
const response = await fetch('/v1/roles', { method: 'GET', headers: { "Authorization": "Bearer JWT" }, }); const data = await response.json();
{ "paging": { "next": { "after": "text" } }, "data": [ { "id": "text", "name": "text", "is_system": false } ] }