Skip to main content
MethodEndpoint
GET/api/integration-services/operation/v1/realtime-assessments/
GET/api/integration-services/operation/v1/screening-alerts/
This endpoint retrieves an assessment short link by its unique GUID.

Endpoint

GET http://{{baseUrl}}/api/integration-services/operation/v1/realtime-assessments/{guid}

Path Parameters

ParameterTypeDescription
guidstringThe unique identifier of the assessment.

Fields

URL link for operation assessment.
guid
string
Assessment unique id.

List of possible responses

200 OK
    {
      "result": {
        "shortlink": "https://uiHost/shortlinks/guid",
        "guid": "guid"
        }
    }
404 Not Found
    {
      "errors": [
        {
          "code": "notFound"
        }
      ]
    }

List of possible errors

CodeEndpoint
notFoundAssessment was not found by this unique id
This endpoint retrieves a screening alert short link by its unique GUID.

Endpoint

GET http://{{baseUrl}}/api/integration-services/operation/v1/screening-alerts/{guid}

Path Parameters

ParameterTypeDescription
guidstringThe unique identifier of the screening.

Fields

URL link for operation screening alert.
guid
string
Screening alert unique id.

List of possible responses

200 OK
    {
      "result": {
        "shortlink": "https://uiHost/shortlinks/guid",
        "guid": "guid"
        }
    }
404 Not Found
    {
      "errors": [
        {
          "code": "notFound"
        }
      ]
    }

List of possible errors

CodeEndpoint
notFoundScreening alert was not found by this unique id
I