Operation screening
curl --request GET \
--url 'https://{{baseUrl}}/api/integration-services/operation/v1/screening-alerts/{guid}' \
--header 'Authorization: Bearer <token>'import requests
url = "https://{{baseUrl}}/api/integration-services/operation/v1/screening-alerts/{guid}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://{{baseUrl}}/api/integration-services/operation/v1/screening-alerts/{guid}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"result": {
"shortlink": "<string>",
"guid": "<string>"
}
}Assessment
Operation screening
This endpoint retrieves a screening alert by its unique GUID.
GET
/
api
/
integration-services
/
operation
/
v1
/
screening-alerts
/
{guid}
Operation screening
curl --request GET \
--url 'https://{{baseUrl}}/api/integration-services/operation/v1/screening-alerts/{guid}' \
--header 'Authorization: Bearer <token>'import requests
url = "https://{{baseUrl}}/api/integration-services/operation/v1/screening-alerts/{guid}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://{{baseUrl}}/api/integration-services/operation/v1/screening-alerts/{guid}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"result": {
"shortlink": "<string>",
"guid": "<string>"
}
}⌘I