Backend
  1. Client API Document
Backend
  • CLIENT
    • Client API Document
      • Get Token
        POST
      • Create Store
        POST
      • Stores List
        GET
      • Store Details
        GET
      • Delete Store
        DELETE
      • Upload Image (via File)
        POST
      • Upload Image (via URL)
        POST
      • Create Store Product
        POST
      • Store Product Details
        GET
      • Update Store Product
        PUT
      • Create Order
        POST
      • Search Invoices
        GET
      • Invoice Details
        GET
  1. Client API Document

Search Invoices

Developing
GET
/api/invoice_orders

Request

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

Header 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 --request GET 'http://stage-client.dropshippinglite.com/api/invoice_orders?page=1&per_page=25&invoice_number=MU9547ede48dd9f4f&start_date=2025-08-01&end_date=2025-08-02&note' \
--header 'Authorization: Bearer <token>'

Responses

🟢200成功
application/json
Body

Example
[
    {
        "id": 326940,
        "invoice_number": "MU95471d2fefdfd24f",
        "financial_status": "unpaid",
        "fulfillment_status": "submit",
        "total_cost": "180.04",
        "inventory_total_cost": "0.00",
        "invoice_count": 5,
        "note": "IT 8c90.myshopify.com",
        "upload_tracking_early": false,
        "fulfill_by_client": false,
        "created_at": "2025-08-09T08:23:29.446Z",
        "paid_at": null,
        "cancel_paid_at": null,
        "client_balance": "46.72"
    },
    {
        "id": 326939,
        "invoice_number": "MU95470a7e940280b1",
        "financial_status": "unpaid",
        "fulfillment_status": "submit",
        "total_cost": "38.88",
        "inventory_total_cost": "0.00",
        "invoice_count": 2,
        "note": "fw.myshopify.com",
        "upload_tracking_early": false,
        "fulfill_by_client": false,
        "created_at": "2025-08-09T08:23:29.391Z",
        "paid_at": null,
        "cancel_paid_at": null,
        "client_balance": "46.72"
    },
    {
        "id": 326245,
        "invoice_number": "MU9547ede48dd9f4f5",
        "financial_status": "unpaid",
        "fulfillment_status": "submit",
        "total_cost": "20.95",
        "inventory_total_cost": "0.00",
        "invoice_count": 1,
        "note": "fw.myshopify.com",
        "upload_tracking_early": false,
        "fulfill_by_client": false,
        "created_at": "2025-08-08T08:00:00.768Z",
        "paid_at": null,
        "cancel_paid_at": null,
        "client_balance": "46.72"
    },
    {
        "id": 326244,
        "invoice_number": "MU9547683d79fac544",
        "financial_status": "unpaid",
        "fulfillment_status": "submit",
        "total_cost": "19.92",
        "inventory_total_cost": "0.00",
        "invoice_count": 2,
        "note": "9040.myshopify.com",
        "upload_tracking_early": false,
        "fulfill_by_client": false,
        "created_at": "2025-08-08T08:00:00.630Z",
        "paid_at": null,
        "cancel_paid_at": null,
        "client_balance": "46.72"
    },
    {
        "id": 325537,
        "invoice_number": "MU9547a6054f2ea7bb",
        "financial_status": "paid",
        "fulfillment_status": "shipped",
        "total_cost": "98.23",
        "inventory_total_cost": "0.00",
        "invoice_count": 6,
        "note": "rsw.myshopify.com",
        "upload_tracking_early": false,
        "fulfill_by_client": false,
        "created_at": "2025-08-07T07:27:58.130Z",
        "paid_at": "2025-08-08T09:09:02.309Z",
        "cancel_paid_at": null,
        "client_balance": "46.72"
    }
]
Modified at 2025-08-13 05:26:00
Previous
Create Order
Next
Invoice Details
Built with