Project Admin ACL

Retrieves all ACLs for the specified application by resource owner.

get

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[]
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.

post

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
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-426614174000

Deletes a project ACL for the specified application resource owner and project.

delete

Deletes 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

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