curl --request GET \
--url https://api.artemis.cynopsis.co/api/customer/{customerId}/screen/status \
--header 'Authorization: Bearer <token>' \
--header 'X-Domain-ID: <x-domain-id>'{
"concluded": true,
"screeningStatus": "DONE",
"screeningValid": true
}curl --request GET \
--url https://api.artemis.cynopsis.co/api/customer/{customerId}/screen/status \
--header 'Authorization: Bearer <token>' \
--header 'X-Domain-ID: <x-domain-id>'{
"concluded": true,
"screeningStatus": "DONE",
"screeningValid": true
}concluded — final outcome of the screening process (e.g., whether the result indicates a sanction hit, a PEP hit, or no hits at all).screeningValid — a boolean indicating whether the screening result is valid. This will be true unless system errors prevent proper screening.screeningStatus — the current state of the screening process, useful for polling until the screening has finished.customerId — This must be the Primary Customer’s ID.curl -X POST "{{backend_url}}/api/customer/{{customerId}}/screen/status" \
-H "Authorization: Bearer <token>" \
-H "X-Domain-ID: {{domain_id}}"
{
"concluded": false,
"screeningValid": true,
"screeningStatus": "DONE"
}
{
"concluded": false,
"screeningValid": false,
"screeningStatus": "PENDING"
}
The access token received from the authorization server in the OAuth 2.0 flow.
X-Domain-ID
customerId