GET jxc_api/VendorInitialBalance/Get?vendId={vendId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
vendId

integer

Required

Body Parameters

None.

Response Information

Resource Description

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.

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
}

application/xml, text/xml

Sample:
<VendorInitialBalanceListModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LemonScm.WebApi.Areas.BaseData.Models.Vendor">
  <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>