Fetch detailed invoice data for a given invoice number.
Request
Provide your bearer token in the Authorization
header when making requests to protected resources. Example:Authorization: Bearer ********************
Request Code Samples
curl --location 'https://partnerapi.flavorcloud.com/Invoice/' \
--header 'Authorization: Bearer <token>'
Responses
application/json
{
"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