GET api/archmods/{archmodId}/archmodcontacts?page={page}&pageSize={pageSize}

Get all arch mod contacts by the arch mod id

Request Information

Authentication

This method requires user authentication

URI Parameters

NameDescriptionTypeAdditional information
archmodId

(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

ListWrapperOfArchModContact
NameDescriptionTypeAdditional information
Total

integer

None.

Elements

Collection of ArchModContact

None.

Response Formats

application/json, text/json

Sample:
{
  "Total": 1,
  "Elements": [
    {
      "ArchModContactId": 1,
      "ArchModId": 1,
      "ArchModContactTypeId": 1,
      "ArchModContactCompany": "sample string 2",
      "ArchModContactName": "sample string 3",
      "ArchModContactFax": "sample string 4",
      "ArchModContactCell": "sample string 5",
      "ArchModContactPhone": "sample string 6",
      "ArchModAddress": "sample string 7",
      "ArchModCity": "sample string 8",
      "ArchModState": "sample string 9",
      "ArchModZipCode": "sample string 10",
      "ArchModContactInsStart": "2025-12-24T05:29:12.4951132-05:00",
      "ArchModContactInsExp": "2025-12-24T05:29:12.4951132-05:00",
      "ArchModContactEmail": "sample string 11"
    },
    {
      "ArchModContactId": 1,
      "ArchModId": 1,
      "ArchModContactTypeId": 1,
      "ArchModContactCompany": "sample string 2",
      "ArchModContactName": "sample string 3",
      "ArchModContactFax": "sample string 4",
      "ArchModContactCell": "sample string 5",
      "ArchModContactPhone": "sample string 6",
      "ArchModAddress": "sample string 7",
      "ArchModCity": "sample string 8",
      "ArchModState": "sample string 9",
      "ArchModZipCode": "sample string 10",
      "ArchModContactInsStart": "2025-12-24T05:29:12.4951132-05:00",
      "ArchModContactInsExp": "2025-12-24T05:29:12.4951132-05:00",
      "ArchModContactEmail": "sample string 11"
    }
  ]
}

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)