Reads the ACL for a workspace

GET /repositories/{repositoryId}/workspaces/{workspaceId}/acl/list

Parameters

Name Required Type Description
repositoryId true string
workspaceId true string

Response

"type": "object", "description": "Result Map of ACL entries", "properties": { "total_rows": { "type": "number" }, "offset": { "type": "number" }, "size": { "type": "number" }, "rows": { "type": "array", "items": { "type": "object", "properties": { "_doc": { "type": "string", "title": "Principal ID" }, "name": { "type": "string", "title": "Principal Name" }, "type": { "type": "string", "title": "Principal Type" }, "domainId": { "type": "string" }, "domainQualifiedId": { "type": "string" }, "domainQualifiedName": { "type": "string" }, "principalId": { "type": "string", "title": "Principal ID" }, "userEmail": { "type": "string" }, "userFirstName": { "type": "string" }, "userLastName": { "type": "string" }, "authorities": { "type": "array", "title": "Authorities", "items": { "type": "string", "title": "Authority Key" } } } } } } }