PUT api/tenancy/{id}/updatetenantclause
Update Tenant Clause. 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 add tenant clause data contract supplied with the request.
AddTenantClauseDataContract| Name | Description | Type | Additional information |
|---|---|---|---|
| Name |
The name value. |
string |
None. |
| Description |
The description value. |
string |
None. |
| ClauseType |
The clause type value. |
EnumDataContract |
None. |
| ForceUpdate |
Indicates whether force update is true. |
boolean |
None. |
| Id |
The unique identifier of this resource. |
integer |
None. |
Request Formats
application/x-www-form-urlencoded
Sample:
Sample not available.
application/json, text/json
Sample:
{
"Name": "sample string 1",
"Description": "sample string 2",
"ClauseType": {
"Id": 1,
"Name": "sample string 2",
"SystemName": "sample string 3"
},
"ForceUpdate": true,
"Id": 4
}
Response Information
Resource Description
The response returned after the operation completes.
IHttpActionResultNone.
Response Formats
application/json, text/json
Sample:
Sample not available.