Skip to content

View list of orders

API : /api/integration/order.json

Method: GET

Request Header

keyvalue
X-pawdo-access-tokenAPI KEY

Query params (optional)

keytypenote
searchstringorder_number | order_code
fulfillment_statusstringunfulfilled|on_hold|ready|payment_awaiting|paid|pending|awaiting|processing|ship-out|delivered|pickup|exception
is_have_ticketbooltrue|false
is_shippingbooltrue|false
address_statusstringpending|valid|invalid|exception|unavailable
design_statusstringmissing|invalid_dim|error|incompleted|completed
tracking_statusstringinforeceived|transit|pickup|undelivered|delivered|exception|expired|notfound|pending
start_timetime.TimeISO-8601
end_timetime.TimeISO-8601
start_time_shiptime.TimeISO-8601
end_time_shiptime.TimeISO-8601
filterstringsystem_warning_pending|system_warning_processing|system_warning_shipout
limitintdefault 10
pageintdefault 1

Example (Response)

json
{
  "message": "Success",
  "orders": [
    {
      "id": "21f4b47f-e5c7-4e71-aee4-d2fa08889d9a",
      "created_at": "2026-02-12T16:47:42.064748+07:00",
      "updated_at": "2026-02-12T17:41:29.885613+07:00",
      "store_id": "349d524a-5b95-4384-82a1-1afb49ca1d77",
      "order_number": "bd-053",
      "order_code": "PD6-0077",
      "shipping_address": {
        "city": "Las Vegas",
        "name": "example",
        "email": "[email protected]",
        "state": "Nevada",
        "country": "United States of America",
        "address1": "3799 S Street",
        "postal_code": "89109",
        "country_code": "us",
        "province_code": "NV",
        "option_ship": "standard"
      },
      "design_status": "error",
      "validate_address": "pending",
      "fulfillment_status": "unfulfilled",
      "tracking_status": "incompleted",
      "fulfillment_type": "pod"
    }
  ],
  "status": true,
  "total": 77
}

View order details

API : api/integration/orders/query.json

Method: GET

Request Header

keyvalue
X-pawdo-access-tokenAPI KEY

Query params

keytypenote
iduuid(optional) Internal ID of the order
order_namestring(optional)

Note:

  • The request must include at least one of the two parameters: id or order_name.
    If neither is provided, the API will return the following error:
    either order id or order name is required

Example (Response)

json
{
  "data": {
    "id": "72664810-96a6-48be-9745-5dac8c82e767",
    "created_at": "2026-02-04T10:17:19.681278+07:00",
    "updated_at": "2026-02-04T10:36:46.486602+07:00",
    "order_number": "BD-052",
    "order_code": "PD6-0076",
    "line_items": [
      {
        "id": "f4d562e6-46d7-459c-81c6-f6d8f03d30d6",
        "title": "Leather Bridle Handles Tote Bag (Genuine Leather) - No zip puller",
        "sku": "GTZ-N",
        "system_sku": "GTZ-N",
        "quantity": 5,
        "mockup1": "https://example.com/images/sample-document.png",
        "design1": "https://example.com/images/sample-document.png",
        "item_fulfills": [
          {
            "id": "f9f3a3a3-06b4-4e74-b735-ddf0b3b5939f",
            "order_name": "PD6-0076",
            "variant_code": "GTZ-N",
            "option_ship": "standard",
            "basecost": 12,
            "warehouse_status": "created",
            "render_status": "done",
            "print_id": 138,
            "fulfillment_type": "pod",
            "purchase_status": "new"
          }
        ]
      }
    ],
    "shipping_address": {
      "city": "Las Vegas",
      "name": "example",
      "email": "[email protected]",
      "state": "Nevada",
      "country": "United States of America",
      "address1": "3799 S Street",
      "postal_code": "89109",
      "country_code": "us",
      "province_code": "NV",
      "option_ship": "standard"
    },
    "design_status": "completed",
    "validate_address": "valid",
    "fulfillment_status": "paid",
    "tracking_status": "incompleted",
    "fulfillment_cost": 64,
    "fulfillment_type": "pod"
  },
  "status": true
}

If you encounter any issues related to the orders API, please contact Pawdo support via Facebook for assistance.