Hi!
I'm currently using World-Check-One-API and I need some datas of CaseManager. I heard abount the map between api and CaseManager in this chat previously.
And then I recognized the two methods to get the data I need.
First is calling 'Request Full Screening' like 'POST /cases/{caseSystemId}/screeningRequest' using parameters 'screeningMode=FULL_SYNC, caseInfo=true)`. This request yields a response containing both case
and results
.
Second is calling `Fetch Full Case' and 'Get collection of Results' separately, like `GET /cases/{caseSystemId}?aggregatedSummary=true` and `GET /cases/{caseSystemId}/results`.
Each of these APIs also provides responses for case
and results
.
Assume the case already called screeningRequest.
Do both methods return the same values in their responses?
Thank you.