Skip to content

Test Shipping

POST
/v1/shipments/mock_bolt_shipping

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

Authorization

X-API-Key
X-API-Key<token>

Admins and Developers can obtain their Bolt API key from the Bolt Merchant Dashboard.

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

curl -X POST "https://example.com/v1/shipments/mock_bolt_shipping" \  -H "Content-Type: application/json" \  -d '{    "delivery_estimate": "string",    "status": "in_transit",    "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"  }'
Empty