GET Api/counterOffer/GetBy?parcel_id={parcel_id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| parcel_id | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
VW_COUNTER_OFFER| Name | Description | Type | Additional information |
|---|---|---|---|
| COUNTER_OFFER_ID | integer |
None. |
|
| PARCEL_ID | integer |
None. |
|
| PARCEL_KEY | string |
None. |
|
| OFFER_MADE_DT | date |
None. |
|
| COUNTER_OFFER_AMT | integer |
None. |
|
| REASON | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"COUNTER_OFFER_ID": 1,
"PARCEL_ID": 2,
"PARCEL_KEY": "sample string 3",
"OFFER_MADE_DT": "2026-04-03T22:40:19.4254817+00:00",
"COUNTER_OFFER_AMT": 1,
"REASON": "sample string 4"
}
text/xml
Sample:
<VW_COUNTER_OFFER xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EF"> <COUNTER_OFFER_AMT>1</COUNTER_OFFER_AMT> <COUNTER_OFFER_ID>1</COUNTER_OFFER_ID> <OFFER_MADE_DT>2026-04-03T22:40:19.4254817+00:00</OFFER_MADE_DT> <PARCEL_ID>2</PARCEL_ID> <PARCEL_KEY>sample string 3</PARCEL_KEY> <REASON>sample string 4</REASON> </VW_COUNTER_OFFER>