Get organization workspace roles¶
Method | Path |
---|---|
GET | /api/v1/organization/roles |
Example¶
curl --request GET 'https://app.yumisign.com/api/v1/organization/roles' \
--header 'Content-Type: application/json'
[
{
"id": 1,
"system": true,
"permissions": [
"create_workflow",
"move_created_workflow",
"..."
],
"name": "ADMIN"
},
{
"id": 2,
"system": true,
"permissions": [
"upload_archive_to_cloud",
"..."
],
"name": "MEMBER"
}
]