List Invoices
Production
https://api.salla.dev/admin/v2
Production
https://api.salla.dev/admin/v2
GET
https://api.salla.dev/admin/v2
Order Invoice
Last modified:2025-04-09 09:34:48
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.salla.dev/admin/v2/orders/invoices?from_date&to_date&order_id'
Response Response Example
200 - Example
{
"status": 200,
"success": true,
"data": [
{
"id": 1479538730,
"order_id": 1557892161,
"type": "Credit Note",
"sub_total": {
"amount": "1000.00",
"currency": "SAR"
},
"shipping_cost": {
"amount": "10.00",
"currency": "SAR"
},
"cod_cost": {
"amount": "0.00",
"currency": "SAR"
},
"discount": {
"amount": "0.00",
"currency": "SAR"
},
"tax": {
"percent": "15.00",
"amount": {
"amount": "151.50",
"currency": "SAR"
}
},
"total": {
"amount": 1161.5,
"currency": "SAR"
},
"date": "2021-12-03"
},
{
"id": 1692688589,
"order_id": 1557892161,
"type": "Tax Invoice",
"sub_total": {
"amount": "29.00",
"currency": "SAR"
},
"shipping_cost": {
"amount": "10.00",
"currency": "SAR"
},
"cod_cost": {
"amount": "0.00",
"currency": "SAR"
},
"discount": {
"amount": "0.00",
"currency": "SAR"
},
"tax": {
"percent": "15.00",
"amount": {
"amount": "5.85",
"currency": "SAR"
}
},
"total": {
"amount": 44.85,
"currency": "SAR"
},
"date": "2021-12-03"
},
{
"id": 1219192926,
"order_id": 1557892161,
"type": "Tax Invoice",
"sub_total": {
"amount": "850.00",
"currency": "SAR"
},
"shipping_cost": {
"amount": "25.00",
"currency": "SAR"
},
"cod_cost": {
"amount": "10.00",
"currency": "SAR"
},
"discount": {
"amount": "0.00",
"currency": "SAR"
},
"tax": {
"percent": "15.00",
"amount": {
"amount": "132.75",
"currency": "SAR"
}
},
"total": {
"amount": 1017.75,
"currency": "SAR"
},
"date": "2021-12-04"
}
],
"pagination": {
"count": 3,
"total": 3,
"perPage": 3,
"currentPage": 1,
"totalPages": 1,
"links": {
"next": "https://s.salla.sa/NextPage"
}
}
}
Request
Query Params
from_date
stringÂ
optional
to_date
stringÂ
optional
order_id
integerÂ
optional
Responses
Modified at 2025-04-09 09:34:48