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. Drivers

Driver Deductions

Driver deductions

POST /api/drivers/deduction

Use this api to make the driver deductions as per the amount owed by each driver. Partners pass the api key along with the driver id, deduction amount, reference uuid and deduction amount and it returns the blowhorn reference id to the partner as per the corresponding deduction.

Query Parameters

Name
Type
Description

driverId

number

Pass driver ID

referenceUuid

string

Client reference number

deductionAmount

number

Deduction amount must not be less then zero

remarks

string

Remarks for deductions if any

deductionMonth

string

DateTime object in given format("2019-05-08T19:35:06.959084")

Headers

Name
Type
Description

API_KEY

string

Enter the API Key

{
  "status": "PASS",
  "message": {
    "referenceId": 1
  }
}
{
  "status": "FAIL",
  "message": "driverId must be an Integer"
}
{
  "status": "string",
  "message": "string"
}
{
  "status": "string",
  "message": "string"
}
PreviousDriver BalanceNextLocations

Last updated 2 years ago

Was this helpful?