cURL
curl --request GET \ --url https://api.wizcommerce.com/v1/invoices \ --header 'X-API-Key: <api-key>'
{ "data": [ { "id": "01f5d171-d3e3-4b2b-bd57-0727194b5bed", "reference_id": "INV-20250101", "order_id": "ORD-20250101", "invoice_number": "INV-20250101", "total_amount": 1000000, "paid_amount": 1000000, "status": "PAID", "due_date": "2025-01-01T00:00:00Z", "remarks": "Remarks", "url": "https://example.com/invoice/INV-20250101", "created_at": "2025-01-01T00:00:00Z", "updated_at": "2025-01-01T00:00:00Z", "items": [ { "name": "Item Name", "product_id": "1234567890", "amount": 1000000, "item_total": 1000000, "id": "01f5d171-d3e3-4b2b-bd57-0727194b5bed", "quantity": 1000000, "reference_id": "ITEM-20250101" } ] } ], "pagination": { "total_records": 100, "total_pages": 10, "current_page": 1, "next_page": 2, "prev_page": 0, "page_size": 10 } }
List Invoices
API Key for authentication
255
x >= 1
created_at
updated_at
1 <= x <= 100
asc
desc
PAID
UNPAID
OK
The response is of type object.
object
Was this page helpful?