- 🐶 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 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
Invoice CSV Download
Developing
GET
{{base_url}}invoice/invoice-excel-download/
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Query Params
company_id
string
required
company_type
string
required
invoice_status
string
required
Example:
Pending
due_date
string
required
invoice_date
string
required
transaction_type
string
required
Example:
adjustment
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}}invoice/invoice-excel-download/?company_id&company_type&invoice_status=Pending&due_date&invoice_date&transaction_type=adjustment'
Responses
🟢200OK
application/json
Body
count
integer
required
next
null
required
previous
null
required
results
object
required
success
boolean
required
data
array[string]
required
Example
{
"count": 0,
"next": null,
"previous": null,
"results": {
"success": true,
"data": [
"string"
]
}
}
Modified at 2025-05-24 12:31:42