Get Condition Assessment Observations

Returns observation data associated to a given condition assessment.

Resource Information

Scope assessments
App Type Agency
Authorization Type Access token
URI /v4/assessments/{id}/observations?lang={lang}
HTTP Method GET
Automation Version(s) 9.0.0

Request Information

Field or Parameter Type Required Values Description Automation Version
id string No Search Assessments
Get My Assessments
The unique identifier for the condition assessment. 9.0.0
lang String No   Indicates the language applied. 9.0.0

Example

Sample Request Head

GET https://apis.accela.com/v4/assessments/1894/observations

Response Information

Field Type Description Automation Version
result[] result{} An array containing the observation custom field values. 9.0.0
result.<customType> string A custom field name and value pair. For example in JSON, "My Custom Field": "My Custom Value". The custom field name and its data type are defined in Automation custom forms or custom tables.
  • For a Text field, the maximum length is 256.
  • For a Number field, any numeric form is allowed, including negative numbers.
  • For a Date field, the format is MM/dd/yyyy. For a Time field, the format is hh:mm.
  • For a TextArea field, the maximum length is 4000 characters, and allows line return characters.
  • For a DropdownList field, the dropdown list values are in the options[] array. For a CheckBox field, the (case-sensitive) valid values are "UNCHECKED" and "CHECKED".
  • For a Radio(Y/N) field, the(case-sensitive) valid values are "Yes" and "No".
9.0.0
status integer The record status. 9.0.0

Example

Sample Response Body

{
  "status": 200,
  "result": [
    {
      "101": "type ABC",
      "PACP Distance": "",
      "PACP Percent": "",
      "PACP Joint": "",
      "PACP Value 1st": "",
      "PACPClockPositions": "",
      "LightType": "model #ABC",
      "PACP Code": "",
      "ModelNumber": ""
    },
    {
      "101": "type DEF",
      "PACP Distance": "",
      "PACP Percent": "",
      "PACP Joint": "",
      "PACP Value 1st": "",
      "PACPClockPositions": "",
      "LightType": "model #DEF",
      "PACP Code": "",
      "ModelNumber": "PACP ABC"
    }
  ]
}