GET residentapi/archmods/{id}
Get the arch mod by id
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
(Required) ArchModId |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
ArchMod| Name | Description | Type | Additional information |
|---|---|---|---|
| ArchModId |
Arch Mod Id. Primary key of the arch mods table |
integer |
None. |
| PropertyId |
Property Id. See the GET residentapi/properties/{propertyId} route to get the property data. (Required for CREATE) |
integer |
None. |
| UnitId |
Unit Id. See the GET residentapi/units/{id} to get the unit data. (Required for CREATE) |
integer |
None. |
| ResidentId |
ResidentId |
integer |
None. |
| OccupantName |
Occupant Name |
string |
None. |
| UnitNumber |
Unit Number |
string |
None. |
| Status |
Status |
string |
None. |
| ProgressCode |
ProgressCode |
string |
None. |
| Description |
Description. (Required for CREATE) |
string |
None. |
| Notes |
Notes |
string |
None. |
| DateSubmitted |
DateSubmitted |
date |
None. |
| StartDate |
Date work is to commence. (Required for CREATE) |
date |
None. |
| EndDate |
Date work is to be completed. (Required for CREATE) |
date |
None. |
| Categories |
Categories |
Collection of ArchModCategory |
None. |
| Attachments |
Attachments |
Collection of ArchModAttachment |
None. |
Response Formats
application/json, text/json
Sample:
{
"archModId": 1,
"propertyId": 2,
"unitId": 1,
"residentId": 1,
"occupantName": "sample string 3",
"unitNumber": "sample string 4",
"status": "sample string 5",
"progressCode": "sample string 6",
"description": "sample string 7",
"notes": "sample string 8",
"dateSubmitted": "2025-12-24T09:12:04.5225418-05:00",
"startDate": "2025-12-24T09:12:04.5225418-05:00",
"endDate": "2025-12-24T09:12:04.5225418-05:00",
"categories": [
{
"id": 1,
"archModId": 2,
"archModCategoryId": 3,
"name": "sample string 4"
},
{
"id": 1,
"archModId": 2,
"archModCategoryId": 3,
"name": "sample string 4"
}
],
"attachments": [
{
"attachmentId": 1,
"archModId": 2,
"fileName": "sample string 3",
"fileUrl": "sample string 4"
},
{
"attachmentId": 1,
"archModId": 2,
"fileName": "sample string 3",
"fileUrl": "sample string 4"
}
]
}