POST api/bookkeepings

Gets paged result of bookkeepings. Bookings with the following statusses are shown, and are downloadable: "IntegratedExportStarted", "IntegratedExportDownloaded", "IntegratedExportPending"

Request Information

URI Parameters

None.

Body Parameters

query defition

BookkeepingLimiter
NameDescriptionTypeAdditional information
Take

integer

Range: inclusive between 0 and 500

Skip

integer

Range: inclusive between 0 and 2147483647

Sort

string

None.

GetFormattetAndMappedSortString

Collection of string

None.

Request Formats

application/json, text/json

Sample:
{
  "Take": 1,
  "Skip": 2,
  "Sort": "sample string 3"
}

application/xml, text/xml

Sample:
<BookkeepingLimiter xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SpeedadminApi.ViewModels">
  <GetFormattetAndMappedSortString xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays" i:nil="true" />
  <Skip>2</Skip>
  <Sort>sample string 3</Sort>
  <Take>1</Take>
</BookkeepingLimiter>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

paged result

IPagedResultOfBookkeepingViewModel
NameDescriptionTypeAdditional information
Results

Collection of BookkeepingViewModel

None.

TotalResults

integer

None.

RequestResults

integer

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.