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

NameDescriptionTypeRequiredAdditional information
partnerId

integer

Required

fromDate

date

Required

toDate

date

Required

Body Parameters

None.

Response Information

Resource Description

TransactionsChartDataResult
NameDescriptionTypeRequiredAdditional 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
  ]
}