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 Event

This API provides status of an order

Please note, this API allows only 1 request per second, per customer. Making more than 1 request per second, from a particular customer will throw a "429" error code. Any successful API call also contains the below rate-limit headers: { 'X-RateLimit-Limit': 1, 'X-RateLimit-Remaining': 5, 'X-RateLimit-Reset': 1 }

wherein; the "X-RateLimit-Limit" header indicates the maximum number of requests that the user can make in the specified time period, the "X-RateLimit-Remaining" header indicates the number of requests that the user has made so far, and, the "X-RateLimit-Reset" header indicates the time (in Unix timestamp format) when the rate limit will reset.

Status of an Order

GET /orders/{AWB}/status

Use this API to get the current status of the shipment by passing the AWB number in the request URL.

The statuses of the orders can be any of the following as per the state in which it currently is: 1. Pending : Awaiting Driver Assignment while delivering the package. 2. Assigned : When delivery associate receives package for delivery from any source to destination. 3. In-Progress : Delivery Associate is out for delivery. 4. Complete : Shipment has been successfully delivered. 5. Returned : Shipment has been attempted, but not successfully delivered and is now returned back to Blowhorn Hub (where a re-attempt may be made based on contract definition) 6. Attempted : Shipment was attempted but customer could not be reached and packed was not delivered. 7. Out-For-Pickup : Delivery associate is out to collect the package from the pickup address. 8. Picked : Delivery associate picked the order from the given pickup location. 9. At-Hub : Package is at Blowhorn hub. 10. At-Hub-RTO : Rider has reached the hub location for returning the order which was rejected 11. Moving-To-Hub : Returning to hub location. This can be a hub to hub movement, or returning to the hub movement of the package. 12. Moving-To-Origin : Returning to hub location for handing over rejected package. 13. Pickup-Failed : Delivery associate could not pick the order from the given pickup location 14. Returned-To-Origin : Order has been returned to the source. 15. Returned-To-Origin-Failed : Order could not be returned to the source.

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": {
        "awb_number": "SH-22T70XX",
        "order_status": "Complete",
        "delivered_to": "John Doe",
        "is_return_order": true
    }
}
{
  "status": "FAIL",
  "message": "Unauthorized"
}
{
    "status": "FAIL",
    "message": "Order does not exists."
}
PreviousCancel OrderNextOrder Event History

Last updated 2 years ago

Was this helpful?