PUT residentapi/archmods/{id}
Updates an archmod
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
(Required) |
integer |
Required |
Body Parameters
ArchModUpdate| Name | Description | Type | Additional information |
|---|---|---|---|
| ArchModId |
ArchMod Id |
integer |
None. |
| Description |
Description |
string |
Required |
| DateSubmitted |
Date work is to commence. (Required for CREATE) |
date |
Required |
| StartDate |
Date work is to commence. (Required for CREATE) |
date |
Required |
| EndDate |
Date work is to be completed. (Required for CREATE) |
date |
Required |
| Notes |
Notes |
string |
None. |
| CategoryIds |
Categories Ids |
Collection of integer |
Required Min length: 1 |
Request Formats
application/json, text/json
Sample:
{
"archModId": 1,
"description": "sample string 1",
"dateSubmitted": "2025-12-24T09:12:48.0882884-05:00",
"startDate": "2025-12-24T09:12:48.0882884-05:00",
"endDate": "2025-12-24T09:12:48.0882884-05:00",
"notes": "sample string 2",
"categoryIds": [
1,
2
]
}
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json
Sample:
Sample not available.