Bu endpoint ile sahip olduğunuz bütün faturaları listeleyebilirsiniz. Ayrıca parametre yardımıyla ödenmiş, ödenmemiş veya iptal edilmiş olarak arama yapabilirsiniz.
GET https://api.ni.net.tr/v1/invoices
Parametre | Tip | Açıklama | Gereklilik |
---|---|---|---|
status | integer | Bu parametre Paid, Unpaid ve Cancelled değerlerini alabilir. | Opsiyonel |
"data": [
{
"id": 000000,
"date": "05-12-2018",
"duedate": "12-12-2018",
"datepaid": "30-11--0001",
"subtotal": "19.92",
"total": "23.50",
"status": "Unpaid",
"items": [
{
"id": 000000,
"description": "SSD VDS II (05 Dec 2018/05 Jan 2019)",
"amount": "23.50"
}
]
},
{
"id": 000000,
"date": "21-12-2018",
"duedate": "28-12-2018",
"datepaid": "30-11--0001",
"subtotal": "8.49",
"total": "10.02",
"status": "Unpaid",
"items": [
{
"id": 000000,
"description": "test.com (2018-12-21/2019-12-21)",
"amount": "10.02"
}
]
},
{
"id": 000000,
"date": "21-12-2018",
"duedate": "28-12-2018",
"datepaid": "30-11--0001",
"subtotal": "8.49",
"total": "10.02",
"status": "Unpaid",
"items": [
{
"id": 000000,
"description": "test2.com (2018-12-21/2019-12-21)",
"amount": "10.02"
}
]
}
]
}
Bu endpoint ile kendinize ait bir faturayı id numarasına göre sorgulayabilirsiniz.
GET https://api.ni.net.tr/v1/invoices/000000
URL de invoices kısmında sonra tüm faturalar sorgusunda elde ettiğiniz id numarasını yazmalısınız.
{
"data": {
"id": 000000,
"date": "21-12-2018",
"duedate": "28-12-2018",
"datepaid": "30-11--0001",
"subtotal": "8.49",
"total": "10.02",
"status": "Unpaid",
"items": [
{
"id": 000000,
"description": "test.com (2018-12-21/2019-12-21)",
"amount": "10.02"
}
]
}
}