Method | Endpoint |
---|
GET | /api/integration-services/operation/v1/realtime-assessments/ |
GET | /api/integration-services/operation/v1/screening-alerts/ |
Get Operation assessment short link by GUID
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
Parameter | Type | Description |
---|
guid | string | The unique identifier of the assessment. |
Fields
URL link for operation assessment.
List of possible responses
200 OK
{
"result": {
"shortlink": "https://uiHost/shortlinks/guid",
"guid": "guid"
}
}
404 Not Found
{
"errors": [
{
"code": "notFound"
}
]
}
List of possible errors
Code | Endpoint |
---|
notFound | Assessment was not found by this unique id |
Get Operation screening short link by GUID
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
Parameter | Type | Description |
---|
guid | string | The unique identifier of the screening. |
Fields
URL link for operation screening alert.
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
Code | Endpoint |
---|
notFound | Screening alert was not found by this unique id |