cases/{CaseSystemId}/screeningRequest returning empty body and status 201 CREATED

I created a cases on the route "cases/saveAndScreen" and to prevent creating a new case each time, I want to use "cases/{CaseSystemId}/screeningRequest" to get the response but I get a status code 201 CREATED with an empty response body.

Best Answer

  • Wisey
    Answer ✓

    That endpoint only creates the screening request and runs asynchronously. You need to check /cases/{caseSystemId}/auditEvents to find when it has completed and then call /cases/{caseSystemId}/results

    1655301143280.png


Answers