v2

latestOpenAPI 3.0.02026-07-3139594346.4 KB
Testing

Test Shipping

This endpoint simulates tracking an order's shipment and is for testing purposes only.

post/v1/shipments/mock_bolt_shipping

Request body

delivery_estimatestring required
status'in_transit' | 'cancelled' | 'failure' | 'delivered' required

The shipment status of a simulated order.

tracking_numberstring required

The carrier's tracking number for the shipment (Order Tracking Testing). Must begin with MockBolt.

Example request

{
  "tracking_detail": [
    {
      "city": "New York",
      "country": "USA",
      "datetime": "2017-07-21T17:32:28Z",
      "message": "BILLING INFORMATION RECEIVED",
      "state": "New York",
      "status": "in_transit",
      "zip": "10044"
    }
  ],
  "tracking_number": "MockBolt1234"
}

Response

Success - No Details