Outbound Label Costs now viewable within orders shipped with Buy Shipping

You can now see shipping label costs for orders shipped with Buy Shipping, perfect for those looking to build accounting/reporting integrations with Veeqo.

By targeting the GET /orders method, you can see the label cost in the outbound_label_charges field contained within the shipment object of an order’s allocation. outbound_label_charges contains two attributes: unit, which contains the currency code, and value, the label’s cost. For example:

{
  "allocations": [
    {
      "shipment": {
        "outbound_label_charges": {
          "unit": "USD",
          "value": 4.43,
        }
      }
    }
  ]
}

For more information, refer to the Veeqo API docs.

2 Likes