GET api/rcvadv/get-byradv/{buyerId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| buyerId | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
BuyerAdvanceDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| Amount | decimal number |
None. |
|
| PaidAmount | decimal number |
None. |
|
| DueAmount | decimal number |
None. |
|
| ReceiveAdvanceEntryId | integer |
None. |
|
| ReceiveAdvancePayEntryId | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"Amount": 1.0,
"PaidAmount": 2.0,
"DueAmount": 3.0,
"ReceiveAdvanceEntryId": 4,
"ReceiveAdvancePayEntryId": 5
}
application/xml, text/xml
Sample:
<BuyerAdvanceDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SUM.Prod.RS.Common.Components.DTO.ReceiveAdvances"> <Amount>1</Amount> <DueAmount>3</DueAmount> <PaidAmount>2</PaidAmount> <ReceiveAdvanceEntryId>4</ReceiveAdvanceEntryId> <ReceiveAdvancePayEntryId>5</ReceiveAdvancePayEntryId> </BuyerAdvanceDTO>