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 files for an execution
GET
/
execution
/
{id}
/
files
Copy
[
{
"id": "1",
"execution_id": "123e4567-e89b-12d3-a456-426614174000",
"file_path": "2023-10-21_14-05-01/1697892305-screenshot.png",
"file_ext": "png",
"file_name": "1697892305-screenshot.png",
"file_size": 2048,
"mime_type": "image/png",
"created_at": "2023-10-21T14:05:01Z",
"signed_url": "https://storage.googleapis.com/asteroid-files/123e4567-e89b-12d3-a456-426614174000/2023-10-21_14-05-01/1697892305-screenshot.png"
}
]
Path Parameters
Response
200
application/json
List of file records associated with the execution.
The response is of type object[]
.
Copy
[
{
"id": "1",
"execution_id": "123e4567-e89b-12d3-a456-426614174000",
"file_path": "2023-10-21_14-05-01/1697892305-screenshot.png",
"file_ext": "png",
"file_name": "1697892305-screenshot.png",
"file_size": 2048,
"mime_type": "image/png",
"created_at": "2023-10-21T14:05:01Z",
"signed_url": "https://storage.googleapis.com/asteroid-files/123e4567-e89b-12d3-a456-426614174000/2023-10-21_14-05-01/1697892305-screenshot.png"
}
]
Assistant
Responses are generated using AI and may contain mistakes.