- 🐶 Walk through Apidog
- hey couriers
- Web
- Hey Courier
- Auth
- Group Permission
- Webhook Secret Key
- Profile Update
- Common
- Employee
- Package Model
- Assign Package To Driver
- Photo Upload in Assign Package
- Route
- Delivery Rates
- Driver Delivery Rates
- Dashboard API
- Optimize Route List of Package
- Return Report
- Delivery Report
- Driver Report
- Driver Kpi ReportGET
- Kpi Report CSVGET
- Delivery Attempt
- Company
- Delivery Status Manage Model
- Warehouse
- Pickup Point
- Driver Lat-Long Manage
- Company Package Upload
- Package by Company Key
- Driver Support
- Pickup Package
- Wallet
- Pickup Route
- Pickup Package by Webhook
- Wallet Adjustment
- Invoice
- App
- Untitled EndpointGET
- Untitled EndpointGET
- Untitled EndpointPOST
Driver Kpi Report
Developing
GET
{{base_url}}kpi-report/kpi-count-report/
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Query Params
driver_id
string
optional
start_date
string
optional
Example:
05-10-2024
end_date
string
optional
Example:
13-10-2024
search
string
optional
ordering
string
optional
Example:
-name
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location -g --request GET '{{base_url}}kpi-report/kpi-count-report/'
Responses
🟢200OK
application/json
Body
success
boolean
required
data
array [object {3}]
required
driver_id
integer
required
driver_name
string
required
packages
array [object {1}]
required
Example
{
"success": true,
"data": [
{
"driver_id": 0,
"driver_name": "string",
"packages": [
{
"id": 0
}
]
}
]
}
Modified at 2024-11-22 06:13:56