Playbook Admin ACL

Gets all playbook ACLs for the specified application (resource owner).

get

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

post

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

Deletes a playbook ACL for the specified application (resource owner) and container.

delete

Deletes 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

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