Flows
Retrieves a paginated list of all flows for the specified playbook, with optional search and sorting.
Bearer authentication with JWT
Whether to flatten the flow tree.
Optional parent object identifier.
The page number for paginated results.
The number of items per page.
Optional search text to filter results.
The sorting option for the results.
Whether to sort in descending order.
trueOK
Forbidden
GET /playbooks/{playbookIdentifier}/flows HTTP/1.1
Host: api.example.uk.jylo.ai
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
[
{
"name": "text",
"description": "text",
"allDocuments": true,
"documentTypeMapping": {
"ANY_ADDITIONAL_PROPERTY": "123e4567-e89b-12d3-a456-426614174000"
},
"documentObjectIdentifiers": [
"123e4567-e89b-12d3-a456-426614174000"
],
"parentObjectIdentifier": "123e4567-e89b-12d3-a456-426614174000",
"playbookIdentifier": "123e4567-e89b-12d3-a456-426614174000",
"dateAdded": "2025-12-06T04:17:03.341Z",
"objectIdentifier": "123e4567-e89b-12d3-a456-426614174000",
"isDirectory": true,
"hasAssembly": true,
"hasDocumentAssembly": true,
"hasChildren": true,
"resourceOwner": {
"email": "text",
"name": "text",
"id": "text"
},
"flowColumns": [
{
"promptObjectIdentifier": "123e4567-e89b-12d3-a456-426614174000",
"objectIdentifier": "123e4567-e89b-12d3-a456-426614174000",
"promptLabel": "text"
}
]
}
]Creates a new flow for the specified playbook.
Bearer authentication with JWT
The object identifier of the playbook.
Created
Bad Request
Forbidden
POST /playbooks/{playbookIdentifier}/flows HTTP/1.1
Host: api.example.uk.jylo.ai
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 278
{
"name": "text",
"description": "text",
"allDocuments": true,
"documentObjectIdentifiers": [
"123e4567-e89b-12d3-a456-426614174000"
],
"documentTypeMapping": {
"ANY_ADDITIONAL_PROPERTY": "123e4567-e89b-12d3-a456-426614174000"
},
"parentObjectIdentifier": "123e4567-e89b-12d3-a456-426614174000"
}{
"name": "text",
"description": "text",
"allDocuments": true,
"documentTypeMapping": {
"ANY_ADDITIONAL_PROPERTY": "123e4567-e89b-12d3-a456-426614174000"
},
"documentObjectIdentifiers": [
"123e4567-e89b-12d3-a456-426614174000"
],
"parentObjectIdentifier": "123e4567-e89b-12d3-a456-426614174000",
"playbookIdentifier": "123e4567-e89b-12d3-a456-426614174000",
"dateAdded": "2025-12-06T04:17:03.341Z",
"objectIdentifier": "123e4567-e89b-12d3-a456-426614174000",
"isDirectory": true,
"hasAssembly": true,
"hasDocumentAssembly": true,
"hasChildren": true,
"resourceOwner": {
"email": "text",
"name": "text",
"id": "text"
},
"flowColumns": [
{
"promptObjectIdentifier": "123e4567-e89b-12d3-a456-426614174000",
"objectIdentifier": "123e4567-e89b-12d3-a456-426614174000",
"promptLabel": "text"
}
]
}Creates a new folder for flows.
Bearer authentication with JWT
Created
Bad Request
Forbidden
POST /playbooks/{playbookIdentifier}/flows/folder HTTP/1.1
Host: api.example.uk.jylo.ai
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 79
{
"name": "text",
"parentObjectIdentifier": "123e4567-e89b-12d3-a456-426614174000"
}{
"name": "text",
"parentObjectIdentifier": "123e4567-e89b-12d3-a456-426614174000",
"dateAdded": "2025-12-06T04:17:03.341Z",
"objectIdentifier": "123e4567-e89b-12d3-a456-426614174000"
}Stop a flow that is in progress.
Bearer authentication with JWT
The object identifier of the flow to stop.
OK
No content
Forbidden
Not Found
PATCH /playbooks/{playbookIdentifier}/flows/{flowObjectIdentifier}/stop HTTP/1.1
Host: api.example.uk.jylo.ai
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
No content
Retrieves the details of a flow using its object identifier.
Bearer authentication with JWT
The object identifier of the flow.
OK
Forbidden
Not Found
GET /playbooks/{playbookIdentifier}/flows/{objectIdentifier} HTTP/1.1
Host: api.example.uk.jylo.ai
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"name": "text",
"description": "text",
"allDocuments": true,
"documentTypeMapping": {
"ANY_ADDITIONAL_PROPERTY": "123e4567-e89b-12d3-a456-426614174000"
},
"documentObjectIdentifiers": [
"123e4567-e89b-12d3-a456-426614174000"
],
"parentObjectIdentifier": "123e4567-e89b-12d3-a456-426614174000",
"playbookIdentifier": "123e4567-e89b-12d3-a456-426614174000",
"dateAdded": "2025-12-06T04:17:03.341Z",
"objectIdentifier": "123e4567-e89b-12d3-a456-426614174000",
"isDirectory": true,
"hasAssembly": true,
"hasDocumentAssembly": true,
"hasChildren": true,
"resourceOwner": {
"email": "text",
"name": "text",
"id": "text"
},
"flowColumns": [
{
"promptObjectIdentifier": "123e4567-e89b-12d3-a456-426614174000",
"objectIdentifier": "123e4567-e89b-12d3-a456-426614174000",
"promptLabel": "text"
}
]
}Updates the details of an existing flow using its object identifier.
Bearer authentication with JWT
The object identifier of the flow to update.
OK
Bad Request
Forbidden
Not Found
PUT /playbooks/{playbookIdentifier}/flows/{objectIdentifier} HTTP/1.1
Host: api.example.uk.jylo.ai
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 338
{
"name": "text",
"description": "text",
"allDocuments": true,
"documentTypeMapping": {
"ANY_ADDITIONAL_PROPERTY": "123e4567-e89b-12d3-a456-426614174000"
},
"documentObjectIdentifiers": [
"123e4567-e89b-12d3-a456-426614174000"
],
"parentObjectIdentifier": "123e4567-e89b-12d3-a456-426614174000",
"playbookIdentifier": "123e4567-e89b-12d3-a456-426614174000"
}{
"name": "text",
"description": "text",
"allDocuments": true,
"documentTypeMapping": {
"ANY_ADDITIONAL_PROPERTY": "123e4567-e89b-12d3-a456-426614174000"
},
"documentObjectIdentifiers": [
"123e4567-e89b-12d3-a456-426614174000"
],
"parentObjectIdentifier": "123e4567-e89b-12d3-a456-426614174000",
"playbookIdentifier": "123e4567-e89b-12d3-a456-426614174000",
"dateAdded": "2025-12-06T04:17:03.341Z",
"objectIdentifier": "123e4567-e89b-12d3-a456-426614174000",
"isDirectory": true,
"hasAssembly": true,
"hasDocumentAssembly": true,
"hasChildren": true,
"resourceOwner": {
"email": "text",
"name": "text",
"id": "text"
},
"flowColumns": [
{
"promptObjectIdentifier": "123e4567-e89b-12d3-a456-426614174000",
"objectIdentifier": "123e4567-e89b-12d3-a456-426614174000",
"promptLabel": "text"
}
]
}Deletes a flow using its object identifier.
Bearer authentication with JWT
The object identifier of the flow to delete.
No Content
Forbidden
Not Found
DELETE /playbooks/{playbookIdentifier}/flows/{objectIdentifier} HTTP/1.1
Host: api.example.uk.jylo.ai
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
No content
Retrieves the progress of a flow using its object identifier.
Bearer authentication with JWT
The object identifier of the flow.
OK
Forbidden
Not Found
GET /playbooks/{playbookIdentifier}/flows/{objectIdentifier}/progress HTTP/1.1
Host: api.example.uk.jylo.ai
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"progress": 1
}Last updated