Agent
Optimiser
Workflow
- POSTCreate a new workflow for an agent
- GETGet a workflow
- POSTExecute a saved workflow for an agent
- DELDelete a workflow
- GETGet credentials for a workflow (and all prior versions of the workflow)
- DELDelete credentials for a workflow
- PATCHAdd a credential for a workflow
- GETGet all workflows and their executions
- GETGet all versions of a workflow
Execution
- GETGet all executions for a workflow
- GETGet an execution
- DELDelete an execution
- POSTUpdate the status of an execution
- GETGet the browser session for an execution
- GETGet the progress of an execution
- GETGet files for an execution
- GETGet all user messages for an execution
- POSTCreate a user message for an execution
- GETGet all browser events for an execution
Credentials
Notifications
Execution
Get all user messages for an execution
GET
/
execution
/
{id}
/
user_messages
Copy
[
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"execution_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"user_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"message": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"injected": true,
"injected_at": "2023-11-07T05:31:56Z"
}
]
Path Parameters
Response
200
application/json
List of messages for the execution
The response is of type object[]
.
Copy
[
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"execution_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"user_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"message": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"injected": true,
"injected_at": "2023-11-07T05:31:56Z"
}
]
Assistant
Responses are generated using AI and may contain mistakes.