POST api/offer/recordofferresponse
Record a sale/auction offer response Processes this offer API request. The parameter and response sections describe the data exchanged with the API.
Request Information
URI Parameters
None.
Body Parameters
The record offer response command data contract supplied with the request.
RecordOfferResponseCommandDataContract| Name | Description | Type | Additional information |
|---|---|---|---|
| OfferId |
The unique identifier of the related offer resource. |
integer |
None. |
| ResponseType |
The response type value. |
EnumDataContract |
None. |
| DateTime |
The date time, expressed as a date and time. |
date |
None. |
| OfferNotes |
The offer notes value. |
string |
None. |
| NegotiatorIds |
The unique identifiers of the related negotiator resources. |
Collection of integer |
None. |
| TakeOffMarket |
Indicates whether take off market is true. |
boolean |
None. |
| VendorNotified |
Indicates whether vendor notified is true. |
boolean |
None. |
| MarkAsOfferAccepted |
Indicates whether mark as offer accepted is true. |
boolean |
None. |
| ForceNewPurchasingRole |
Indicates whether force new purchasing role is true. |
boolean |
None. |
| TenancyType |
The tenancy type value. |
EnumDataContract |
None. |
| NoticePeriodType |
The notice period type value. |
EnumDataContract |
None. |
| AgreementType |
The agreement type value. |
EnumDataContract |
None. |
| ServiceLevelType |
The service level type value. |
EnumDataContract |
None. |
| TenancyRoleStatus |
The tenancy role status value. |
EnumDataContract |
None. |
| EndDate |
The end date, expressed as a date and time. |
date |
None. |
| RejectOtherPendingOffers |
Indicates whether reject other pending offers is true. |
boolean |
None. |
Request Formats
application/x-www-form-urlencoded
Sample not available.
application/json, text/json
{
"OfferId": 1,
"ResponseType": {
"Id": 1,
"Name": "sample string 2",
"SystemName": "sample string 3"
},
"DateTime": "2026-07-23T08:14:20.5098295Z",
"OfferNotes": "sample string 2",
"NegotiatorIds": [
1,
2
],
"TakeOffMarket": true,
"VendorNotified": true,
"MarkAsOfferAccepted": true,
"ForceNewPurchasingRole": true,
"TenancyType": {
"Id": 1,
"Name": "sample string 2",
"SystemName": "sample string 3"
},
"NoticePeriodType": {
"Id": 1,
"Name": "sample string 2",
"SystemName": "sample string 3"
},
"AgreementType": {
"Id": 1,
"Name": "sample string 2",
"SystemName": "sample string 3"
},
"ServiceLevelType": {
"Id": 1,
"Name": "sample string 2",
"SystemName": "sample string 3"
},
"TenancyRoleStatus": {
"Id": 1,
"Name": "sample string 2",
"SystemName": "sample string 3"
},
"EndDate": "2026-07-23T08:14:20.5098295Z",
"RejectOtherPendingOffers": true
}
Response Information
Resource Description
The response returned after the operation completes.
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version |
The version value. |
Version |
None. |
| Content |
The content value. |
HttpContent |
None. |
| StatusCode |
The status code classification. |
HttpStatusCode |
None. |
| ReasonPhrase |
The reason phrase value. |
string |
None. |
| Headers |
The collection of headers. |
Collection of Object |
None. |
| RequestMessage |
The request message value. |
HttpRequestMessage |
None. |
| IsSuccessStatusCode |
Indicates whether this item is success status code. |
boolean |
None. |