List tasks
Tasks
List tasks
Use when listing or searching async tasks (e.g. admin queue view). Returns list with optional filtering.
GET
List tasks
Query Structure
Filter Argument
All filters are passed inside thefilter argument. Each filter field accepts an input object with operators:
Available Filters
| Filter | Input Type | Operators | Description |
|---|---|---|---|
status | StringInputType | eq, ilike, like, in, between | Task status (e.g., AVAILABLE, ALLOCATED, COMPLETED) |
subtype | StringInputType | eq, ilike, like, in, between | Task subtype |
task_type_code | StringInputType | eq, ilike, like, in, between | Task type code (PICK, DISP, RCV, PWAY, TRAN, REPLEN, LOAD, CONV) |
account_id | IdInputType | eq, gt, gteq, lt, lteq, in, filled | Filter by account ID |
warehouse_id | IdInputType | eq, gt, gteq, lt, lteq, in, filled | Filter by warehouse ID |
product_id | IdInputType | eq, gt, gteq, lt, lteq, in, filled | Filter by product ID |
location_from_id | IdInputType | eq, gt, gteq, lt, lteq, in, filled | Filter by source location ID |
location_to_id | IdInputType | eq, gt, gteq, lt, lteq, in, filled | Filter by destination location ID |
user_id | IdInputType | eq, gt, gteq, lt, lteq, in, filled | Filter by assigned user ID |
goods_out_id | IdInputType | eq, gt, gteq, lt, lteq, in, filled | Filter by goods out order ID |
goods_in_receipt_line_id | IdInputType | eq, gt, gteq, lt, lteq, in, filled | Filter by goods in receipt line ID |
storage_unit_from_id | IdInputType | eq, gt, gteq, lt, lteq, in, filled | Filter by source storage unit ID |
load_id | IdInputType | eq, gt, gteq, lt, lteq, in, filled | Filter by load ID |
assigned_at | DatetimeInputType | eq, from, to, between | Filter by assignment date |
completed_at | DatetimeInputType | eq, from, to, between | Filter by completion date |
created_at | DatetimeInputType | eq, from, to, between | Filter by creation date |
priority | IntegerInputType | eq, gt, gteq, lt, lteq, between | Filter by priority |
drop_sequence | IntegerInputType | eq, gt, gteq, lt, lteq, between | Filter by drop sequence |
Filter Operators
| Input Type | Operators |
|---|---|
| StringInputType | eq (exact), ilike (case-insensitive partial), like (case-sensitive partial), in (array match), between (range) |
| IntegerInputType | eq, gt, gteq, lt, lteq, between |
| DatetimeInputType | eq, from, to, between |
| BooleanInputType | eq (required) |
| IdInputType | eq, gt, gteq, lt, lteq, in, filled |
Authorizations
Enter your API key in the format x-api-key <api-key>*
Query Parameters
Available options:
EVENTS, PRICES, CUSTOMERS, FEATURES Required range:
1 <= x <= 1000Required range:
x >= 0Available options:
asc, desc Available options:
published, deleted, archived Available options:
PENDING, PROCESSING, COMPLETED, FAILED Available options:
IMPORT, EXPORT 
