Gets the status values for inspection checklists
Scope | inspections Deprecated scope name: get_inspection_checklist_statuses |
App Type | All |
Authorization Type | Access token |
URI | /v4/settings/inspections/checklists/statuses?group={group} |
HTTP Method | GET |
Automation Version(s) | 7.3.3 |
Field or Parameter | Type | Required | Values | Description | Automation Version |
---|---|---|---|---|---|
group | string | Yes | � | The group query parameter. | 7.3.2 |
lang | String | No | � | Indicates the language applied. | 7.3.2 |
GET https://apis.accela.com/v4/settings/inspections/checklists/statuses?group=GS_Status
The following sample request uses the ISLANDTON agency in the TEST environment on the Accela Developer Sandbox. Click the "Send to Hurl.It" link below to submit the sample request. Replace YOUR-ACCESS-TOKEN before submitting the request.
curl -H 'Content-type: application/json' -H 'Accept: application/json' -H 'Authorization: YOUR-ACCESS-TOKEN' -H 'x-accela-appid: 635355074966095701' -X GET https://apis.accela.com/v4/settings/inspections/checklists/statuses?group=GS_Status
Field | Type | Description | Automation Version |
---|---|---|---|
result[] | result{} | � | 7.3.3 |
result.criticalScore | long | The critical score for the status of a guidesheet item that is a Major Violation/Critical Item. | 7.3.2 |
result.displayOrder | long | The order of the item in comparison to the other items. | 7.3.2 |
result.lhsType | string | Indicates whether or not the checklist is for LHS (Life/Health/Safety). For LHS-type items, the maximum point value becomes the default score. | 7.3.2 |
result.majorViolation | string | The number of major violations. | 7.3.2 |
result.nonCriticalScore | long | The non-critical score for the status of a guidesheet item that is not a Major Violation/Critical Item. | 7.3.2 |
result.resultType | string | The type of result that can be ascibed to an inspection. There are three result types: Approved: Approves (passes) the checklist item. Denied: Denies (fails) the checklist item. Informational: Indicates that the checklist items do not need a status of app | 7.3.2 |
result.text | string | The localized display text. | 7.3.2 |
result.value | string | The value for the specified parameter. | 7.3.2 |
status | integer | The record status. | 7.3.3 |
{ "result": [ { "displayOrder": 1, "resultType": "APPROVED", "majorViolation": "N", "criticalScore": 80, "nonCriticalScore": 60, "value": "Passed", "text": "Passed" }, { "displayOrder": 2, "resultType": "DENIED", "majorViolation": "N", "criticalScore": 50, "nonCriticalScore": 40, "value": "Failed", "text": "Failed" } ], "status": 200 }