Skip to main content
GET
/
workflows
/
{id}
/
chat
/
messages
Get chat conversation history
curl --request GET \
  --url http://localhost:5173/api/flowdrop/workflows/{id}/chat/messages \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": [
    {
      "role": "user",
      "content": "Add a new processing node called \"transform\""
    }
  ]
}

Authorizations

Authorization
string
header
required

JWT token for authentication

Path Parameters

id
string
required

Workflow ID

Response

Conversation history retrieved successfully

Wrapped response for chat history retrieval

success
boolean
Example:

true

data
object[]