Orders: list
orders_get_ordersRetrieve delivery orders filtered by ID, status, or creation date. Use the response to obtain available actions for confirming, rejecting, or shipping orders.
Instructions
Returns a list of delivery orders (get_orders) with filters by ID, status, and creation date. Read-only, changes nothing. Use it as a starting point: take the available actions from the response (availableActions: confirm/reject/perform/receive/setMarkings/setTrackNumber/setCNCDetails, etc.) for subsequent write operations. Available only to B2C sellers. The response includes a hasMore flag for pagination.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| ids | No | Filter by Avito order IDs (array of strings). If omitted, all orders matching the other filters are returned. | |
| statuses | No | Filter by statuses (array). Allowed values: on_confirmation (awaiting confirmation), ready_to_ship (awaiting shipment), in_transit (in transit), canceled (canceled), delivered (delivered to the buyer), on_return (being returned), in_dispute (dispute opened), closed (closed). | |
| dateFrom | No | Unix timestamp in seconds. Returns only orders created no earlier than this moment. | |
| page | No | Page number for pagination (starting from 1). | |
| limit | No | Maximum orders per page. The API allows up to 20. |