Project Admin ACL
Retrieves all project ACLs for the specified application resource owner.
Authorizations
AuthorizationstringRequired
Bearer authentication with JWT
Path parameters
resourceOwnerIdstringRequired
The unique identifier of the resource owner (application).
Responses
200
OK
Responsestring · uuid[]
403
Forbidden
get
/projects/admin/applications/{resourceOwnerId}GET /projects/admin/applications/{resourceOwnerId} HTTP/1.1
Host: api.example.uk.jylo.ai
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
[
"123e4567-e89b-12d3-a456-426614174000"
]Adds a project ACL for the specified application resource owner.
Authorizations
AuthorizationstringRequired
Bearer authentication with JWT
Path parameters
resourceOwnerIdstringRequired
The unique identifier of the resource owner (application).
Body
containerObjectIdentifierstring · uuidRequired
isAdminbooleanRequired
Responses
200
OK
Responsestring · uuid
400
Bad Request
403
Forbidden
post
/projects/admin/applications/{resourceOwnerId}POST /projects/admin/applications/{resourceOwnerId} HTTP/1.1
Host: api.example.uk.jylo.ai
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 83
{
"containerObjectIdentifier": "123e4567-e89b-12d3-a456-426614174000",
"isAdmin": true
}123e4567-e89b-12d3-a456-426614174000Deletes a project ACL for the specified application resource owner and project.
Authorizations
AuthorizationstringRequired
Bearer authentication with JWT
Path parameters
resourceOwnerIdstringRequired
The unique identifier of the resource owner (application).
containerIdstring · uuidRequired
The unique identifier of the project to remove ACL for.
Responses
200
OK
No content
403
Forbidden
404
Not Found
delete
/projects/admin/applications/{resourceOwnerId}/{containerId}DELETE /projects/admin/applications/{resourceOwnerId}/{containerId} HTTP/1.1
Host: api.example.uk.jylo.ai
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
No content
Last updated