GET Api/counterOffer?id={id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

None.

Response Information

Resource Description

COUNTER_OFFER
NameDescriptionTypeAdditional information
COUNTER_OFFER_ID

integer

None.

PARCEL_ID

integer

None.

OFFER_MADE_DT

date

None.

COUNTER_OFFER_AMT

integer

None.

REASON

string

None.

PARCEL

PARCEL

None.

Response Formats

application/json, text/json

Sample:
{
  "COUNTER_OFFER_ID": 1,
  "PARCEL_ID": 2,
  "OFFER_MADE_DT": "2026-04-03T22:36:18.3780042+00:00",
  "COUNTER_OFFER_AMT": 1,
  "REASON": "sample string 3"
}

text/xml

Sample:
<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:36:18.3780042+00:00</OFFER_MADE_DT>
  <PARCEL_ID>2</PARCEL_ID>
  <REASON>sample string 3</REASON>
</COUNTER_OFFER>