curl --request POST \
--url https://cds.marmar.life/v1/assessments \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <api-key>' \
--header 'X-Tenant-Code: <api-key>' \
--data '
{
"patient": {
"patientId": null,
"externalId": null,
"demographics": null,
"reproductiveStatus": null,
"hormonalTherapies": null
},
"medications": [
{
"name": "<string>",
"dosage": {
"amount": 123,
"unit": null,
"frequency": "<string>"
},
"form": null,
"route": null,
"status": null,
"providedRxNormCode": null,
"providedDrugbankId": null,
"source": null,
"startDate": null,
"endDate": null
}
],
"conditions": null,
"allergies": null,
"vitals": null,
"labs": null,
"socialHistory": null
}
'