GET api/statement?connection_id={connection_id}&from={from}&to={to}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
connection_id

integer

Required

from

date

None.

to

date

None.

Body Parameters

None.

Response Information

Resource Description

ResponseJSON
NameDescriptionTypeAdditional information
items

Object

None.

currentPage

integer

None.

limitRow

integer

None.

resultRow

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "items": {},
  "currentPage": 2,
  "limitRow": 3,
  "resultRow": 4
}

application/xml, text/xml

Sample:
<ResponseJSON xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Project.Core.Pagination">
  <currentPage>2</currentPage>
  <items />
  <limitRow>3</limitRow>
  <resultRow>4</resultRow>
</ResponseJSON>