POST api/tenancy/{id}/settenancyinfo
Set Tenancy Info. 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 |
The unique identifier of the requested resource. |
integer |
Required |
Body Parameters
The set info command data contract supplied with the request.
SetInfoCommandDataContract| Name | Description | Type | Additional information |
|---|---|---|---|
| ServiceLevel |
The service level value. |
EnumDataContract |
None. |
| FurnishingLevel |
The furnishing level value. |
EnumDataContract |
None. |
| Term |
The term value. |
EnumDataContract |
None. |
| PriceType |
The price type value. |
EnumDataContract |
None. |
| AvailableDate |
The available date, expressed as a date and time. |
date |
None. |
Request Formats
application/x-www-form-urlencoded
Sample:
Sample not available.
application/json, text/json
Sample:
{
"ServiceLevel": {
"Id": 1,
"Name": "sample string 2",
"SystemName": "sample string 3"
},
"FurnishingLevel": {
"Id": 1,
"Name": "sample string 2",
"SystemName": "sample string 3"
},
"Term": {
"Id": 1,
"Name": "sample string 2",
"SystemName": "sample string 3"
},
"PriceType": {
"Id": 1,
"Name": "sample string 2",
"SystemName": "sample string 3"
},
"AvailableDate": "2026-08-04T22:24:28.8411426Z"
}
Response Information
Resource Description
The response returned after the operation completes.
IHttpActionResultNone.
Response Formats
application/json, text/json
Sample:
Sample not available.