POST Bill/GetBillList

Request Information

URI Parameters

None.

Body Parameters

BillListRequestModel
NameDescriptionTypeAdditional information
BillId

integer

None.

Text

string

None.

StartDate

string

None.

EndDate

string

None.

BillTypeId

integer

None.

IsTransfer

boolean

None.

TransferTypeId

integer

None.

IsOpen

string

None.

HideItems

boolean

None.

Limit

integer

None.

Page

integer

None.

SortOrder

string

None.

SortColumn

string

None.

SortType

string

None.

Request Formats

application/json, text/json

Sample:
{
  "BillId": 1,
  "Text": "sample string 2",
  "StartDate": "sample string 3",
  "EndDate": "sample string 4",
  "BillTypeId": 5,
  "IsTransfer": true,
  "TransferTypeId": 7,
  "IsOpen": "sample string 8",
  "HideItems": true,
  "Limit": 10,
  "Page": 11,
  "SortOrder": "sample string 12",
  "SortColumn": "sample string 13",
  "SortType": "sample string 14"
}

application/xml, text/xml

Sample:
<BillListRequestModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/VitaCabinetry.Model.Bill">
  <Limit xmlns="http://schemas.datacontract.org/2004/07/VitaCabinetry.Model">10</Limit>
  <Page xmlns="http://schemas.datacontract.org/2004/07/VitaCabinetry.Model">11</Page>
  <SortColumn xmlns="http://schemas.datacontract.org/2004/07/VitaCabinetry.Model">sample string 13</SortColumn>
  <SortOrder xmlns="http://schemas.datacontract.org/2004/07/VitaCabinetry.Model">sample string 12</SortOrder>
  <SortType xmlns="http://schemas.datacontract.org/2004/07/VitaCabinetry.Model">sample string 14</SortType>
  <BillId>1</BillId>
  <BillTypeId>5</BillTypeId>
  <EndDate>sample string 4</EndDate>
  <HideItems>true</HideItems>
  <IsOpen>sample string 8</IsOpen>
  <IsTransfer>true</IsTransfer>
  <StartDate>sample string 3</StartDate>
  <Text>sample string 2</Text>
  <TransferTypeId>7</TransferTypeId>
</BillListRequestModel>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'BillListRequestModel'.

Response Information

Resource Description

Object

None.

Response Formats

application/json, text/json

Sample:
{}

application/xml, text/xml

Sample:
<z:anyType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns:z="http://schemas.microsoft.com/2003/10/Serialization/" />