GET api/dashboard/getIncomingInvoiceStatisticsByStatus?from={from}&to={to}
Gelen faturaların statü bazlı adetsel istatistiğini verir.
İstek Bilgisi
URI Parametreleri
İsim | Açıklama | Tip | Ek bilgi |
---|---|---|---|
from |
Fatura tarihi - Başlangıç |
date |
Required |
to |
Fatura tarihi - Bitiş |
date |
Required |
Gövde Parametreleri
Yok.
Yanıt Bilgisi
Kaynak Açıklaması
Collection of DashboardStatisticsByStatusViewModelİsim | Açıklama | Tip | Ek bilgi |
---|---|---|---|
Description | string |
Yok. |
|
StatusCount | integer |
Yok. |
|
TotalCount | integer |
Yok. |
Yanıt Formatı
application/json, text/json
Örnek:
[ { "description": "sample string 1", "statusCount": 2, "totalCount": 3 }, { "description": "sample string 1", "statusCount": 2, "totalCount": 3 } ]
text/html
Örnek:
[{"description":"sample string 1","statusCount":2,"totalCount":3},{"description":"sample string 1","statusCount":2,"totalCount":3}]
application/xml, text/xml
Örnek:
<ArrayOfDashboardStatisticsByStatusViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DP.NetInvoice.View.Models"> <DashboardStatisticsByStatusViewModel> <Description>sample string 1</Description> <StatusCount>2</StatusCount> <TotalCount>3</TotalCount> </DashboardStatisticsByStatusViewModel> <DashboardStatisticsByStatusViewModel> <Description>sample string 1</Description> <StatusCount>2</StatusCount> <TotalCount>3</TotalCount> </DashboardStatisticsByStatusViewModel> </ArrayOfDashboardStatisticsByStatusViewModel>