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
The response is of type object[].
object[]