POST jxc_api/VendorInitialBalance/GetList

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:

Sample not available.

Response Information

Resource Description

Collection of VendorInitialBalanceListModel
NameDescriptionTypeAdditional information
VendId

integer

None.

VendNo

string

None.

VendName

string

None.

Payable

decimal number

None.

Payed

decimal number

None.

Balance

decimal number

None.

PurchaserName

string

None.

Purchaser

integer

None.

DepartmentId

integer

None.

DepartmentName

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "VendId": 1,
    "VendNo": "sample string 2",
    "VendName": "sample string 3",
    "Payable": 4.0,
    "Payed": 5.0,
    "Balance": -1.0,
    "PurchaserName": "sample string 6",
    "Purchaser": 1,
    "DepartmentId": 1,
    "DepartmentName": "sample string 7"
  },
  {
    "VendId": 1,
    "VendNo": "sample string 2",
    "VendName": "sample string 3",
    "Payable": 4.0,
    "Payed": 5.0,
    "Balance": -1.0,
    "PurchaserName": "sample string 6",
    "Purchaser": 1,
    "DepartmentId": 1,
    "DepartmentName": "sample string 7"
  }
]

application/xml, text/xml

Sample:
<ArrayOfVendorInitialBalanceListModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LemonScm.WebApi.Areas.BaseData.Models.Vendor">
  <VendorInitialBalanceListModel>
    <DepartmentId>1</DepartmentId>
    <DepartmentName>sample string 7</DepartmentName>
    <Payable>4</Payable>
    <Payed>5</Payed>
    <Purchaser>1</Purchaser>
    <PurchaserName>sample string 6</PurchaserName>
    <VendId>1</VendId>
    <VendName>sample string 3</VendName>
    <VendNo>sample string 2</VendNo>
  </VendorInitialBalanceListModel>
  <VendorInitialBalanceListModel>
    <DepartmentId>1</DepartmentId>
    <DepartmentName>sample string 7</DepartmentName>
    <Payable>4</Payable>
    <Payed>5</Payed>
    <Purchaser>1</Purchaser>
    <PurchaserName>sample string 6</PurchaserName>
    <VendId>1</VendId>
    <VendName>sample string 3</VendName>
    <VendNo>sample string 2</VendNo>
  </VendorInitialBalanceListModel>
</ArrayOfVendorInitialBalanceListModel>