List pick processing requests
Goods Out: Processing
List pick processing requests
Retrieve pick processing requests using GraphQL. These track asynchronous pick-list generation for goods out orders.
POST
List pick processing requests
Query Structure
Filter Argument
All filters are passed inside thefilter argument. Each filter field accepts an input object with operators (e.g. eq, ilike, from, to, between):
Available Filters
| Filter | Input Type | Operators | Description |
|---|---|---|---|
goods_out_id | IdInputType | eq, in, gt, gteq, lt, lteq, filled | Goods out (sales order) ID |
goods_out_reference | StringInputType | eq, ilike, like, in, between | Goods out reference |
status | StatusInputType | eq, in | Request status (enum input — pending, completed, failed) |
process_reference | StringInputType | eq, ilike, like, in, between | Processing reference |
created_at | DatetimeInputType | eq, from, to, between | Creation timestamp |
updated_at | DatetimeInputType | eq, from, to, between | Last update timestamp |
Authorizations
OAuth 2.0 authentication. Use the client credentials or authorization code flow to obtain an access token.
The subdomain/tenant name identifying which tenant's data to access. Required for all API requests.
Body
application/json
GraphQL query string
Example:
"query($filter: PickProcessingRequestFilterType) { pick_processing_requests { all(filter: $filter) { edges { node { status process_reference message goods_out { id reference } created_at } } } } }"
Query variables including the filter object
Example:
{
"filter": { "status": { "eq": "completed" } }
}
