Playbook Admin ACL
Retrieves all playbook ACLs for the specified application (resource owner).
Authorizations
AuthorizationstringRequired
Bearer authentication with JWT
Path parameters
resourceOwnerIdstringRequired
The resource owner identifier.
Responses
200
OK
Responsestring · uuid[]
403
Forbidden
get
/playbooks/admin/applications/{resourceOwnerId}GET /playbooks/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 playbook ACL for the specified application (resource owner).
Authorizations
AuthorizationstringRequired
Bearer authentication with JWT
Path parameters
resourceOwnerIdstringRequired
The resource owner identifier.
Body
containerObjectIdentifierstring · uuidRequired
isAdminbooleanRequired
Responses
200
OK
Responsestring · uuid
400
Bad Request
403
Forbidden
post
/playbooks/admin/applications/{resourceOwnerId}POST /playbooks/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 playbook ACL for the specified application (resource owner) and container.
Authorizations
AuthorizationstringRequired
Bearer authentication with JWT
Path parameters
resourceOwnerIdstringRequired
The resource owner identifier.
containerIdstring · uuidRequired
The container identifier.
Responses
200
OK
No content
403
Forbidden
404
Not Found
delete
/playbooks/admin/applications/{resourceOwnerId}/{containerId}DELETE /playbooks/admin/applications/{resourceOwnerId}/{containerId} HTTP/1.1
Host: api.example.uk.jylo.ai
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
No content
Last updated