FlowDrop Docs

Get chat conversation history

Retrieve the conversation history for a workflow's chat session. Returns an array of messages with role (user/assistant) and content.

GET
/workflows/{id}/chat/messages

Authorization

AuthorizationBearer <token>

JWT token for authentication

In: header

Path Parameters

id*string

Workflow ID

Response Body

application/json

application/json

application/json

curl -X GET "https://example.com/workflows/string/chat/messages"
{  "success": true,  "data": [    {      "role": "user",      "content": "Add a new processing node called \"transform\""    }  ]}