GET residentapi/archmods/{archModId}/archmodattachments?page={page}&pageSize={pageSize}

Get all Arch Mod Attachments by ArchMod MyUnitId

Request Information

URI Parameters

NameDescriptionTypeAdditional information
archModId

(Required) Archmod MyUnitId related to the attachments

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

ListWrapperOfArchModAttachment
NameDescriptionTypeAdditional information
Total

integer

None.

Elements

Collection of ArchModAttachment

None.

Response Formats

application/json, text/json

Sample:
{
  "total": 1,
  "elements": [
    {
      "attachmentId": 1,
      "archModId": 2,
      "fileName": "sample string 3",
      "fileUrl": "sample string 4"
    },
    {
      "attachmentId": 1,
      "archModId": 2,
      "fileName": "sample string 3",
      "fileUrl": "sample string 4"
    }
  ]
}