Welcome to the Blood Analysis Report API endpoint for health providers. This API allows you to issue and manage reports related to blood analysis.
POST /api/v1/reports/blood-analysis
POST /api/v1/reports/blood-analysis HTTP/1.1
Host: api.healthprovider.com
Content-Type: application/json
{
"patientId": "123456",
"analysisDate": "2024-08-05",
"results": {
"hemoglobin": "13.5",
"whiteBloodCells": "4500",
"platelets": "150000"
}
}
HTTP/1.1 201 Created
Content-Type: application/json
{
"reportId": "78910",
"status": "issued",
"message": "Blood analysis report successfully created."
}
For more information, please refer to the API documentation or contact support.