cURL
curl --request GET \ --url https://v2.flabs.in/client/patient/getReports \ --header 'Authorization: Bearer <token>' \ --header 'patient-authorization: <api-key>'
[ { "reportUrl": "report-url", "reportDate": "2023-10-01T12:00:00Z", "labName": "Lab Name", "patientName": "John Doe", "tests": [ "Test 1", "Test 2" ], "_id": "unique-id" } ]
Retrieves all reports for a patient registered through the client lab.
Authorization token obtained from the auth API
Patient token in format: Bearer {patientToken}
Successful response
Unique identifier for the report
URL to download the report PDF
Date when the report was generated
Name of the laboratory
Name of the patient
List of tests included in the report
Was this page helpful?