PUT api/tenancyagreement/{id}/servenotice
Update Serve Notice. Processes this tenancy agreement API request. The parameter and response sections describe the data exchanged with the API.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
Agreement id |
integer |
Required |
Body Parameters
The serve notice command data contract supplied with the request.
ServeNoticeCommandDataContract| Name | Description | Type | Additional information |
|---|---|---|---|
| GroupId |
The unique identifier of the related group resource. |
integer |
None. |
| OtherPartyNotified |
Indicates whether other party notified is true. |
boolean |
None. |
| ReceivedDate |
The received date, expressed as a date and time. |
date |
None. |
| RescindedDate |
The rescinded date, expressed as a date and time. |
date |
None. |
| DocumentId |
The unique identifier of the related document resource. |
integer |
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:
{
"GroupId": 1,
"OtherPartyNotified": true,
"ReceivedDate": "2026-07-22T20:18:01.4947139Z",
"RescindedDate": "2026-07-22T20:18:01.4947139Z",
"DocumentId": 4,
"Id": 5
}
Response Information
Resource Description
The response returned after the operation completes.
IHttpActionResultNone.
Response Formats
application/json, text/json
Sample:
Sample not available.