GET api/properties/{propertyId}/archmodactions?page={page}&pageSize={pageSize}

Get all arch mod actions by the propertyid

Request Information

Authentication

This method requires user authentication

URI Parameters

NameDescriptionTypeAdditional information
propertyId

(Required)

integer

Required

page

(Optional)The page number of returned records based on the page size

integer

0

pageSize

(Optional)The number of records to return per page

integer

0

Body Parameters

None.

Response Information

Resource Description

ListWrapperOfArchModAction
NameDescriptionTypeAdditional information
Total

integer

None.

Elements

Collection of ArchModAction

None.

Response Formats

application/json, text/json

Sample:
{
  "Total": 1,
  "Elements": [
    {
      "ArchModActionId": 1,
      "ArchModActionCategoryId": 1,
      "ArchModId": 1,
      "ArchModActionDescription": "sample string 2",
      "ArchModActionComments": "sample string 3",
      "ArchModActionDate": "2025-12-24T05:29:11.9638842-05:00"
    },
    {
      "ArchModActionId": 1,
      "ArchModActionCategoryId": 1,
      "ArchModId": 1,
      "ArchModActionDescription": "sample string 2",
      "ArchModActionComments": "sample string 3",
      "ArchModActionDate": "2025-12-24T05:29:11.9638842-05:00"
    }
  ]
}

Internal Error Codes

  • 106: ResourceNotFound
    (The requested resource was not found., NotFound)
  • 100: MissingRequiredHeader
    (Invalid request format. A required HTTP header was not specified., BadRequest)
  • 118: InvalidHeaderValue
    (The value provided for one of the HTTP headers was not in the correct format., BadRequest)
  • 199: UnknownError
    (Internal server error., InternalServerError)