Skip to main content
GET
/
api
/
openapi
/
waybills
Query Waybills
curl --request GET \
  --url https://api.platform.poderp.com/api/openapi/waybills \
  --header 'Authorization: Bearer <token>'
[
  {
    "customerOrderNo": "<string>",
    "waybillNo": "<string>",
    "trackingNumber": "<string>",
    "labelUrl": "<string>",
    "status": "<string>"
  }
]
Query waybill tracking numbers and shipping label URLs for your orders. You can query by either:
  • uniqueRequestId — the batch identifier used when creating orders, returns all waybills for that batch
  • orderNo — the customer order number from individual order items, returns waybills for that specific order
At least one parameter must be provided.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

uniqueRequestId
string

The unique request ID used when creating the order. Returns all waybills for that batch.

orderNo
string

The customer order number (the orderNo passed in each order item when creating the order). Returns waybills associated with that specific order.

Response

List of waybill information

customerOrderNo
string

The customer order number

waybillNo
string | null

Waybill tracking number

trackingNumber
string | null

Last-mile delivery tracking number

labelUrl
string | null

Shipping label URL

status
string

Waybill status (CREATED, PENDING, COMPLETED, FAILED, CANCELLED, INTERCEPTED)