LAM
Tasks
Fetch tasks ran in the past
GET
Authorizations
Query Parameters
Filter tasks created after this Unix timestamp (in milliseconds).
Example:
1678886400000
Filter tasks created before this Unix timestamp (in milliseconds).
Example:
1678972800000
Filter tasks by a specific task ID.
Example:
"task_123"
Page number for pagination.
Required range:
x >= 1
Example:
1
Number of tasks per page (maximum 100).
Required range:
1 <= x <= 100
Example:
20
Filter tasks by execution type (e.g., 'run', 'extract').
Available options:
run
, extract
, fleet
Example:
["run", "extract"]
Field to sort tasks by (e.g., 'timestamp', 'executionTime').
Available options:
timestamp
, executionTime
, taskId
, status
, executionType
Example:
"timestamp"
Sort order ('ascend' or 'descend').
Available options:
ascend
, descend
Example:
"ascend"
Filter tasks by Raccoon passcode.
Example:
"code123"
Response
200
application/json
Successful Response
List of tasks.
Example:
[
{
"executionTime": 15,
"executionType": "run",
"inputs": {
"param1": "value1",
"url": "https://example.com"
},
"output": [
{ "result1": "data1" },
{ "result2": "data2" }
],
"raccoonPasscode": "raccoon_secret_123",
"taskId": "task_abcdef123456",
"timestamp": 1678886400
}
]
Metadata about the task list.
Was this page helpful?