Blowhorn API Documentation
  • Welcome
  • API REFERENCE
    • Authentication
      • Customer Authentication
      • Partner Authentication
    • Orders
      • Shipment Orders
      • Marketplace Orders
      • Cancel Order
      • Order Event
      • Order Event History
      • ETA
      • Delivery Partner Details
      • Order Documents
    • Drivers
      • Available Vehicle Class
      • Driver Availability
      • Payday Loan Eligibility
      • Driver Details
      • Driver Balance
      • Driver Deductions
    • Locations
      • Serviceability
      • Hubs
      • Coverage
      • Location Type
      • Storage Type
      • Location Zone
      • Location
    • WMS Inbound
      • Clients
      • Suppliers
      • Purchase Orders
      • Advance Shipping Notice
      • Goods Receipt Note
    • WMS Outbound
      • Shipping Label
      • Shipping Manifest
    • Inventory
      • Product Group
      • Tracking Level
      • Pack Config
      • SKU
      • Inventory
      • Inventory Transaction
    • Webhooks
      • HMAC Authentication
      • Order Status
      • Trip Status
      • Inventory Status
  • Help
    • FAQ
Powered by GitBook
On this page

Was this helpful?

  1. API REFERENCE
  2. Orders

Order Documents

APIs for accessing order related documents like POD etc can be found below.

Get documents of a Shipment Order

GET /orders/shipment/{orderId}/get-pods

Use this API to get the relevant documents of a shipment that has been ordered. It requires the orderId of the order whose documents we are expecting. Note: The orderId is sent to the customer when the order is created.

Path Parameters

Name
Type
Description

orderId*

string

AWB Number / Shipment ID received when order is created

Headers

Name
Type
Description

API_KEY*

string

API key obtained by the Customer/Partner

{
  "status": "PASS",
  "message": [
    {
      "documnt_type": "Signature,",
      "document_link": "https://blowhorn/media/order_1JHL9N,",
      "uploaded_on": "12 Jan 2020, 04:30"
    },
    {
      "documnt_type": "POD,",
      "document_link": "https://blowhorn/media/order_1JHL9N,",
      "uploaded_on": "12 Jan 2020, 04:30"
    }
  ]
}
{
    "status": "FAIL",
    "message": "Order does not exists."
}
{
  "status": "FAIL",
  "message": "Unauthorized"
}
PreviousDelivery Partner DetailsNextDrivers

Last updated 3 years ago

Was this helpful?