Playbook Document Types

Gets all document types for the specified playbook.

get

Retrieves a paginated list of all document types for the specified playbook, with optional search and sorting.

Authorizations
AuthorizationstringRequired

Bearer authentication with JWT

Path parameters
playbookIdentifierstringRequired
Query parameters
pageNumberinteger · int32Optional

The page number for paginated results.

pageSizeinteger · int32Optional

The number of items per page.

searchTextstringOptional

Optional search text to filter results.

sortinginteger · enumOptional

The sorting option for the results.

Possible values:
descbooleanOptional

Whether to sort in descending order.

Default: true
Responses
chevron-right
200

OK

get
/playbooks/{playbookIdentifier}/document-types

Creates a new document type for the specified playbook.

post

Creates a new document type for the specified playbook.

Authorizations
AuthorizationstringRequired

Bearer authentication with JWT

Path parameters
playbookIdentifierstringRequired
Body
namestring · nullableRequired
descriptionstring · nullableOptional
Responses
post
/playbooks/{playbookIdentifier}/document-types

Gets a specific document type by its object identifier.

get

Retrieves the details of a document type for the specified playbook using its object identifier.

Authorizations
AuthorizationstringRequired

Bearer authentication with JWT

Path parameters
objectIdentifierstring · uuidRequired

The object identifier of the document type.

playbookIdentifierstringRequired
Responses
chevron-right
200

OK

get
/playbooks/{playbookIdentifier}/document-types/{objectIdentifier}

Updates an existing document type for the specified playbook.

put

Updates the details of an existing document type for the specified playbook using its object identifier.

Authorizations
AuthorizationstringRequired

Bearer authentication with JWT

Path parameters
objectIdentifierstring · uuidRequired

The object identifier of the document type to update.

playbookIdentifierstringRequired
Body
namestring · nullableRequired
descriptionstring · nullableOptional
Responses
chevron-right
200

OK

put
/playbooks/{playbookIdentifier}/document-types/{objectIdentifier}

Deletes a document type from the specified playbook.

delete

Deletes a document type from the specified playbook using its object identifier.

Authorizations
AuthorizationstringRequired

Bearer authentication with JWT

Path parameters
objectIdentifierstring · uuidRequired

The object identifier of the document type to delete.

playbookIdentifierstringRequired
Responses
delete
/playbooks/{playbookIdentifier}/document-types/{objectIdentifier}

No content

Last updated