For the complete documentation index, see llms.txt. This page is also available as Markdown.

Flow Chats

List flow chats.

get

Returns a paged, searchable and sortable list of the chats belonging to the specified flow.

Authorizations
AuthorizationstringRequired

Bearer authentication with JWT

Path parameters
projectIdentifierstringRequired
flowIdentifierstringRequired
Query parameters
pageNumberinteger · int32Optional
pageSizeinteger · int32Optional
searchTextstringOptional
sortingstring · enumOptionalPossible values:
descbooleanOptionalDefault: true
Responses
200

OK

objectIdentifierstring · uuidOptional
namestring · nullableRequired
descriptionstring · nullableOptional
dateAddedstring · date-timeOptional
estimatedTokenCountinteger · int32Optional
assistantMessageCountinteger · int32Optional
userMessageCountinteger · int32Optional
totalCountinteger · int32Optional
get/projects/{projectIdentifier}/flows/{flowIdentifier}/chats

Create a flow chat.

post

Creates a new chat conversation bound to the specified flow, optionally attaching documents to use as context.

Authorizations
AuthorizationstringRequired

Bearer authentication with JWT

Path parameters
projectIdentifierstringRequired
flowIdentifierstringRequired
Body
namestring · nullableRequired
descriptionstring · nullableOptional
documentObjectIdentifiersstring · uuid[] · nullableOptional
Responses
200

OK

objectIdentifierstring · uuidOptional
namestring · nullableRequired
descriptionstring · nullableOptional
dateAddedstring · date-timeOptional
estimatedTokenCountinteger · int32Optional
assistantMessageCountinteger · int32Optional
userMessageCountinteger · int32Optional
totalCountinteger · int32Optional
post/projects/{projectIdentifier}/flows/{flowIdentifier}/chats

Get a flow chat.

get

Retrieves a single chat belonging to the flow by its object identifier.

Authorizations
AuthorizationstringRequired

Bearer authentication with JWT

Path parameters
objectIdentifierstring · uuidRequired
projectIdentifierstringRequired
flowIdentifierstringRequired
Responses
200

OK

objectIdentifierstring · uuidOptional
namestring · nullableRequired
descriptionstring · nullableOptional
dateAddedstring · date-timeOptional
estimatedTokenCountinteger · int32Optional
assistantMessageCountinteger · int32Optional
userMessageCountinteger · int32Optional
totalCountinteger · int32Optional
get/projects/{projectIdentifier}/flows/{flowIdentifier}/chats/{objectIdentifier}

Update a flow chat.

put

Updates a flow chat's settings, such as its name, auto-rename behaviour, or the model it uses.

Authorizations
AuthorizationstringRequired

Bearer authentication with JWT

Path parameters
objectIdentifierstring · uuidRequired
projectIdentifierstringRequired
flowIdentifierstringRequired
Body
namestring · nullableOptional
descriptionstring · nullableOptional
autoRenameboolean · nullableOptional
modelIdentifierstring · uuid · nullableOptional
Responses
200

OK

objectIdentifierstring · uuidOptional
namestring · nullableRequired
descriptionstring · nullableOptional
dateAddedstring · date-timeOptional
estimatedTokenCountinteger · int32Optional
assistantMessageCountinteger · int32Optional
userMessageCountinteger · int32Optional
totalCountinteger · int32Optional
put/projects/{projectIdentifier}/flows/{flowIdentifier}/chats/{objectIdentifier}

Delete a flow chat.

delete

Permanently deletes a chat from the flow. Requires container administrator rights.

Authorizations
AuthorizationstringRequired

Bearer authentication with JWT

Path parameters
objectIdentifierstring · uuidRequired
projectIdentifierstringRequired
flowIdentifierstringRequired
Responses
204

No Content

No content

delete/projects/{projectIdentifier}/flows/{flowIdentifier}/chats/{objectIdentifier}

No content

Get document token length.

post

Returns the combined token count of the supplied documents, useful for estimating context window usage before attaching them to a chat.

Authorizations
AuthorizationstringRequired

Bearer authentication with JWT

Path parameters
projectIdentifierstringRequired
flowIdentifierstringRequired
Body
idsstring · uuid[] · nullableOptional
Responses
200

OK

integer · int64Optional
post/projects/{projectIdentifier}/flows/{flowIdentifier}/chats/query-token-length

Last updated