Skip to content

List Inbound Deliveries

Request

List All Inbound Deliveries

📌 Description

This endpoint retrieves all inbound deliveries for the authenticated user. You can view delivery history and track multiple deliveries across different time slots.

🔹 Use Cases

  • Viewing delivery history for inventory management - Tracking multiple deliveries across different time slots - Monitoring delivery status for planning purposes - Auditing inbound logistics for reporting
Security
OAuth2
Query
limitinteger, (int64)

Maximum number of items to return per page (1-100)

pageinteger, (int64)

Page number to return (starts at 1)

sortstring

Field to sort results by

sort_descboolean

Sort in descending order if true

statestring

Filter by inbound status

idsArray of strings

Filter by inbound IDs

asn_idstring

Filter by WMS ASN ID

typestring

Filter by inbound type (inbound, client_return, facility_return)

client_idstring

Filter by client ID (admin only)

slot_fromstring

Filter to inbounds whose delivery slot STARTS on or after this date (YYYY-MM-DD, UTC). This is the arrival date, not the booking date. Inclusive, and usable without slot_to. Unscheduled (PENDING) inbounds have no arrival date and are excluded by this filter.

slot_tostring

Filter to inbounds whose delivery slot STARTS on or before this date (YYYY-MM-DD, UTC). Inclusive — the whole of this day counts as inside the range — and usable without slot_from. Sending a slot_from later than slot_to is rejected with 400.

curl -i -X GET \
  'https://developer-docs.quiqup.com/_mock/openapi/api/fulfilment/inbounds?limit=0&page=0&sort=string&sort_desc=true&state=string&ids=string&asn_id=string&type=string&client_id=string&slot_from=string&slot_to=string' \
  -H 'Authorization: Bearer <YOUR_TOKEN_HERE>'

Responses

Success response

Bodyapplication/json
inboundsArray of objects(List of inbound deliveries for the user )required
paginationobject(pagination.PaginationMeta)required
Response
{ "inbounds": [ {} ], "pagination": { "next": {}, "next_url": "string", "prev": {}, "prev_url": "string", "total": 0 } }