- Authentication
- Rates
- Shipments
- Tracking
- Batches
- Classifications
- Customer
- Landed Cost
- Manifest
- Webhooks
- Invoices
Get Invoice Detail
GET
/Invoice/{InvoiceNumber}
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Path Params
InvoiceNumber
string
required
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 --request GET 'https://partnerapi.flavorcloud.com/Invoice/'
Responses
🟢200Success
application/json
Body
InvoiceURL
string
required
InvoiceURLXLS
string
required
InvoiceNumber
string
required
InvoiceAmount
number
required
InvoiceDetail
array [object {6}]
required
TrackingNumber
string
required
ShippingCost
number
required
Commission
number
required
LandedCost
object
required
Insurance
number
required
TotalShipmentCharges
number
required
InvoiceType
string
required
InvoiceDate
string
required
Example
{
"InvoiceURL": "https://cdn.flavorcloud.com/i-FLCL-1i89h2m6ei0o-payment-invoice.pdf",
"InvoiceURLXLS": "https://cdn.flavorcloud.com/FLCL-1i89h2m6ei0o-payment-invoice-1726896757265.xlsx",
"InvoiceNumber": "FLCL-1i89h2m6ei0o",
"InvoiceStatus": "PAID",
"InvoiceAmount": 142.12,
"InvoiceDetail": [
{
"TrackingNumber": "EPG011072100000598",
"ShippingCost": 13.25,
"Commission": 17.34,
"LandedCost": {
"Duties": 52.02,
"Fees": 18.59,
"Taxes": 40.92,
"Total": 111.53
},
"Insurance": 0,
"TotalShipmentCharges": 142.12,
"OrderNumber": "1180"
}
],
"InvoiceType": "Standard",
"InvoiceDate": "2024-09-21T05:32:37.000Z"
}
Modified at 2025-04-28 20:51:45