2026-05-06
Retrieves the report associated with a specific person. The report is returned as a PDF file on success
Written by: Tarun
Retrieves the report associated with a specific person. The report is returned as a PDF file on success. The person is identified using their unique ID passed as a query parameter.
GET {{baseURL}}/person
| Parameter | Type | Description |
|---|---|---|
personId | string | The unique identifier of the person whose report is to be retrieved. Example: 696dfc78d6b1018502xxxxxx |
| Status | Scenario | Description |
|---|---|---|
200 OK | Success | The report was found and is returned as a PDF file (application/pdf). |
| 404 | Report not generated | The person exists in the system, but their report has not been generated yet. |
| 403 | Person not found | No person was found matching the provided personId. Ensure the ID is correct and the person record exists. |
| 500 | Server Error | An internal server error occurred while processing the request. Retry the request or contact support if the issue persists. |