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

Payday Loan Eligibility

Driver eligibility

GET /api/drivers/drivereligibility

Use this api to get the driver eligibility based on service provider's criteria. It requires the api key provided as well as the driver's id whose eligibility we need to check.

Query Parameters

Name
Type
Description

driverId

string

Pass Driver ID

Headers

Name
Type
Description

API_KEY

string

Enter the API Key

{
  "status": "PASS",
  "message": "Driver is Eligible as per your criteria"
}
{
  "status": "FAIL",
  "message": "Driver does not have payments older than 3 months"
}
{
  "status": "string",
  "message": "string"
}
PreviousDriver AvailabilityNextDriver Details

Last updated 2 years ago

Was this helpful?