GET residentapi/infocenterdocuments/{id}

Gets InfoCenterDocument action by ID

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

(Required)

integer

Required

Body Parameters

None.

Response Information

Resource Description

InfoCenterAnswer
NameDescriptionTypeAdditional information
AnswerId

AnswerId. Primary key for the CallCenterAnswers table

integer

None.

QuestionId

QuestionId. See GET residentapi/infocenterquestions/{id} to get the question which relates to this answer

integer

None.

PropertyId

ConnectPropertyId. See GET residentapi/properties/{id} to get the property data

integer

None.

IsNonApplicable

IsNonApplicable. Is Answer Non applicable

boolean

None.

Text

Text

string

None.

InfoCenterQuestion

InfoCenterQuestion. Question which is related to this answer

InfoCenterQuestion

None.

InfoCenterDocuments

Infocenter Documents. Property which is not mapped directly to the database and used to store attachments for this answer

Collection of InfoCenterDocument

None.

Response Formats

application/json, text/json

Sample:
{
  "answerId": 1,
  "questionId": 2,
  "propertyId": 3,
  "isNonApplicable": true,
  "text": "sample string 5",
  "infoCenterQuestion": {
    "questionId": 1,
    "categoryId": 2,
    "text": "sample string 3",
    "infoCenterCategory": {
      "categoryId": 1,
      "name": "sample string 2"
    },
    "infoCenterAnswers": []
  },
  "infoCenterDocuments": [
    {
      "documentId": 1,
      "answerid": 1,
      "filename": "sample string 2",
      "createdBy": 1,
      "createdOn": "2025-12-24T09:11:29.2891767-05:00",
      "lastmodifiedBy": 1,
      "lastmodifiedOn": "2025-12-24T09:11:29.3047888-05:00",
      "pathToFile": "sample string 3"
    },
    {
      "documentId": 1,
      "answerid": 1,
      "filename": "sample string 2",
      "createdBy": 1,
      "createdOn": "2025-12-24T09:11:29.2891767-05:00",
      "lastmodifiedBy": 1,
      "lastmodifiedOn": "2025-12-24T09:11:29.3047888-05:00",
      "pathToFile": "sample string 3"
    }
  ]
}