1. Invoices
FlavorCloud Partner API Documentation
  • Getting Started Guide for Merchants
  • B2B International Shipping Guide
  • Getting Started Guide for 3PLs
  • Returns Guide
  • Authentication
    • Get Auth Token
      POST
  • Rates
    • Get Rates
      POST
    • Get Multi Rates
      POST
  • Shipments
    • Create Shipments
      POST
    • Get Shipments
      GET
    • Cancel Shipments
      PUT
  • Tracking
    • Get Tracking Detail
      GET
  • Classifications
    • Get Classification
      POST
  • Landed Cost
    • Get Landed Cost
      POST
  • Webhooks
    • Subscribe Webhooks
      POST
    • Unsubscribe Webhooks
      POST
  • Invoices
    • Get Invoice Detail
      GET
    • Get Invoices
      GET
  • Schemas
    • Schemas
      • ClassificationStatus
      • ProductResponse
      • ClassificationResponse
      • MissingProperty
      • ResponseDetails
      • ResponseData
      • ErrorResponse
      • ClassificationProduct
      • ClassificationRequest
      • InvoiceResponse
      • CustomerResponse
      • AccountInformation
      • ShippingOrigin
      • AveragePackageSettings
      • CreateCustomerRequest
      • CreateCustomerResponse
      • GetCustomerResponse
      • LandedCostResponse
      • Piece
      • Address
      • LandedCostRequest
      • CreateManifestShipmentResponse
      • CreateManifestShipmentRequest
      • GetManifestShipmentResponse
      • RateDetailDDU
      • LandedCostDetail
      • RateDetailDDP
      • TradeModel
      • RatesResponse
      • QuoteToAddress
      • QuoteFromAddress
      • QuotePiece
      • Package
      • QuoteRequest
      • RateRequest
      • ShipmentPackage
      • ShipmentsModel
      • MultiRateRequest
      • ShipmentsModelQuote
      • MultiQuoteRequest
      • RateDetailReponse
      • ShipmentBatches
      • ShipFromAddress
      • ShipToAddress
      • IndiaExportInfo
      • Metadata
      • BatchRequest
      • BatchUpdateReqModel
      • BatchCloseReqModel
      • ShipmentBatchesResponseModel
      • ShipmentResponse
      • ShipmentResponseExcluding_ConsolidateLabel_
      • ShipmentRequest
      • CancelShipmentResponse
      • CancelShipmentRequest
      • TrackingHistory
      • TrackingAPIResponse
      • CreateWebhookResponse
      • WebHookInfo
      • SubscribeWebhooksRequest
      • UnSubscribeWebhookRequest
  1. Invoices

Get Invoices

GET
/Invoices
Fetch a list of invoice numbers within a specified date range. You can use results from this call to search for specific Invoice details in /Invoice/{InvoiceNumber} API.
Must use bearer token method for authentication.

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Query Params

Request Code 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 'https://partnerapi.flavorcloud.com/Invoices?FromDate=undefined&ToDate=undefined&CustomerKey=undefined&InvoiceType=undefined' \
--header 'Authorization: Bearer <token>'

Responses

🟢200Success
application/json
Bodyapplication/json

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",
        "InvoiceAmount": 142.12,
        "InvoiceStatus": "PAID",
        "InvoiceType": "Standard",
        "InvoiceDate": "2024-09-21T05:32:37.000Z"
    }
]
Modified at 2025-07-16 15:22:22
Previous
Get Invoice Detail
Next
ClassificationStatus
Built with