Skip to main content
GET
/
order
/
get_customs_information
Order - Get Customs Information
curl --request GET \
  --url https://api.skulabs.com/order/get_customs_information \
  --header 'Authorization: Bearer <token>'
{
  "orders": [
    {
      "_id": "507f1f77bcf86cd799439011",
      "order_number": "<string>",
      "store_id": "507f1f77bcf86cd799439011",
      "stash": {
        "shipping_information": {
          "name": "<string>",
          "email": "<string>",
          "address": "<string>",
          "street2": "<string>",
          "city": "<string>",
          "state": "<string>",
          "zip": "<string>",
          "country": "<string>",
          "phone": "<string>",
          "company": "<string>",
          "method": "<string>",
          "is_residential": true,
          "is_valid": true,
          "hash": "<string>",
          "address_type": "<string>",
          "address_validation_data": {}
        }
      },
      "shipment_items": [
        {
          "item_id": "<string>",
          "quantity": 123,
          "value": 123,
          "weight": 123,
          "weight_unit": "<string>",
          "tracking_number": "<string>",
          "carrier": "<string>",
          "service": "<string>",
          "description": "<string>",
          "tariff": "<string>",
          "origin": "<string>"
        }
      ]
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Query Parameters

selector
object
required

Query selector object for filtering results

limit
number

Max results to return

Example:

50

skip
number

Number of results to skip

Example:

0

sort
object

Sort fields object, e.g. { "name": 1 }

Response

Customs information for orders

orders
object[]
required

Orders with customs shipment item data