POST api/tenancy/checkout/{id}/feedback
Record Checkout Feedback. Processes this tenancy API request. The parameter and response sections describe the data exchanged with the API.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
Check out appointment Id |
integer |
Required |
Body Parameters
The save check out feedback data contract supplied with the request.
SaveCheckOutFeedbackDataContract| Name | Description | Type | Additional information |
|---|---|---|---|
| Notes |
The notes value. |
string |
None. |
| Description |
The description value. |
string |
None. |
| Status |
The status value. |
EnumDataContract |
None. |
| Reason |
The reason value. |
EnumDataContract |
None. |
| DateTime |
The date time, expressed as a date and time. |
date |
None. |
| DocumentIds |
The unique identifiers of the related document resources. |
Collection of integer |
None. |
| NegIds |
The unique identifiers of the related neg resources. |
Collection of integer |
None. |
| Id |
The unique identifier of this resource. |
integer |
None. |
Request Formats
application/x-www-form-urlencoded
Sample not available.
application/json, text/json
{
"Notes": "sample string 1",
"Description": "sample string 2",
"Status": {
"Id": 1,
"Name": "sample string 2",
"SystemName": "sample string 3"
},
"Reason": {
"Id": 1,
"Name": "sample string 2",
"SystemName": "sample string 3"
},
"DateTime": "2026-07-23T08:18:46.7905092Z",
"DocumentIds": [
1,
2
],
"NegIds": [
1,
2
],
"Id": 3
}
Response Information
Resource Description
The response returned after the operation completes.
CheckOutFeedbackDataContract| Name | Description | Type | Additional information |
|---|---|---|---|
| Team |
The team value. |
EventTeamDataContract |
None. |
| Notes |
The collection of notes. |
Collection of EventNoteCommandDataContract |
None. |
| Documents |
The collection of documents. |
Collection of DocumentDataContract |
None. |
| Name |
The name value. |
string |
None. |
| Description |
The description value. |
string |
None. |
| DateTime |
The date time, expressed as a date and time. |
date |
None. |
| EventCategory |
The event category value. |
EnumDataContract |
None. |
| EventType |
The event type value. |
EnumDataContract |
None. |
| EventStatus |
The event status value. |
EnumDataContract |
None. |
| Negotiators |
The collection of negotiators. |
Collection of ListNegotiatorDataContract |
None. |
| BranchId |
The unique identifier of the related branch resource. |
integer |
None. |
| OwningTeamId |
The unique identifier of the related owning team resource. |
integer |
None. |
| TeamAccessType |
The team access type value. |
string |
None. |
| CustomFields |
The collection of custom fields. |
Collection of CustomFieldGroupWithValuesDataContract |
None. |
| CreatedDate |
The created date, expressed as a date and time. |
date |
None. |
| CreatedBy |
The created by value. |
CreatedByDataContract |
None. |
| Id |
The unique identifier of this resource. |
integer |
None. |
Response Formats
application/json
Sample not available.
text/json
Sample not available.