List Permissions
Get all available permissions in the system.
GET
/api/v1/permissions/Authentication
Syllable-API-KeyrequiredSend Syllable-API-Key in the header.
Need a credential? Create or manage an API token in the Syllable Console.
Parameters
This endpoint has no declared parameters.
Responses
200Successful Response
application/json
response
PermissionGroupResponse[]
required
Item schema
itemsPermissionGroupResponserequiredInformation about a group of permissions related to the same feature.
3 fields
namestringrequiredName of the permission group
descriptionstringrequiredDescription of the permission group
permissionsPermissionResponse[]requiredPermissions in the group
Item schema
itemsPermissionResponserequiredInformation about a permission.
3 fields
namestringrequiredName of the permission
display_namestringrequiredDisplay name of the permission
descriptionstring | nulloptionalDescription of the permission
Response example
[
{
"name": "string",
"description": "string",
"permissions": [
{
"name": "string",
"display_name": "string",
"description": "string"
}
]
}
]
