GET api/statistics/{partnerId}/transactions?fromDate={fromDate}&toDate={toDate}&api-version=2.0
Returns number of sent|paid|opened mobileinvoices in the time period.
Request Information
URI Parameters
| Name | Description | Type | Required | Additional information |
|---|---|---|---|---|
| partnerId | integer |
Required |
||
| fromDate | date |
Required |
||
| toDate | date |
Required |
Body Parameters
None.
Response Information
Resource Description
TransactionsChartDataResult| Name | Description | Type | Required | Additional information |
|---|---|---|---|---|
| Dates | Collection of string |
None. |
||
| Sent | Collection of integer |
None. |
||
| Paid | Collection of integer |
None. |
||
| Opened | Collection of integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"dates": [
"sample string 1",
"sample string 2"
],
"sent": [
1,
2
],
"paid": [
1,
2
],
"opened": [
1,
2
]
}