POST api/payeeslist

Return list of payees based on list of payeeIDs

Request Information

URI Parameters

None.

Body Parameters

Collection of integer

Request Formats

application/json, text/json

Sample:
[
  1,
  2
]

application/xml, text/xml

Sample:
<ArrayOfint xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
  <int>1</int>
  <int>2</int>
</ArrayOfint>

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 'List`1'.

Response Information

Resource Description

List of Payees

Collection of PayeeViewModel
NameDescriptionTypeAdditional information
Id

integer

None.

VendorId

integer

None.

ResidentId

integer

None.

PayeeFullName

string

None.

Resident

ResidentViewModel

None.

Vendor

VendorViewModel

None.

PayeeType

PayeeTypeEnum

None.

Address

AddressViewModel

None.