GET api/UserAccount?accountId={accountId}&pageNumber={pageNumber}&pageSize={pageSize}&sorted={sorted}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
accountId

integer

Required

pageNumber

integer

Required

pageSize

integer

Required

sorted

boolean

Required

Body Parameters

None.

Response Information

Resource Description

PagingResult
NameDescriptionTypeAdditional information
TotalRecords

integer

None.

TotalPages

integer

None.

CurrentPage

integer

None.

PageLenght

integer

None.

Result

Object

None.

Response Formats

application/json, text/json

Sample:
{
  "TotalRecords": 1,
  "TotalPages": 2,
  "CurrentPage": 3,
  "PageLenght": 4,
  "Result": {}
}

application/xml, text/xml

Sample:
<PagingResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Walsh.Api.Models">
  <CurrentPage>3</CurrentPage>
  <PageLenght>4</PageLenght>
  <Result />
  <TotalPages>2</TotalPages>
  <TotalRecords>1</TotalRecords>
</PagingResult>