Flow Columns
Creates a new flow column for the specified flow.
Authorizations
AuthorizationstringRequired
Bearer authentication with JWT
Path parameters
playbookIdentifierstring · uuidRequired
The object identifier of the playbook.
flowIdentifierstring · uuidRequired
The object identifier of the flow.
Body
promptObjectIdentifierstring · uuidOptional
Responses
201
Created
400
Bad Request
403
Forbidden
404
Not Found
post
/playbooks/{playbookIdentifier}/flows/{flowIdentifier}/columnsPOST /playbooks/{playbookIdentifier}/flows/{flowIdentifier}/columns HTTP/1.1
Host: api.example.uk.jylo.ai
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 65
{
"promptObjectIdentifier": "123e4567-e89b-12d3-a456-426614174000"
}{
"promptObjectIdentifier": "123e4567-e89b-12d3-a456-426614174000",
"objectIdentifier": "123e4567-e89b-12d3-a456-426614174000",
"promptLabel": "text"
}Deletes a flow column using its object identifier.
Authorizations
AuthorizationstringRequired
Bearer authentication with JWT
Path parameters
objectIdentifierstring · uuidRequired
The object identifier of the flow column to delete.
playbookIdentifierstringRequired
flowIdentifierstringRequired
Responses
204
No Content
403
Forbidden
404
Not Found
delete
/playbooks/{playbookIdentifier}/flows/{flowIdentifier}/columns/{objectIdentifier}DELETE /playbooks/{playbookIdentifier}/flows/{flowIdentifier}/columns/{objectIdentifier} HTTP/1.1
Host: api.example.uk.jylo.ai
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
No content
Last updated