curl --request POST \
--url https://api.develophealth.io/patient-enrollment \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"patient": {
"first_name": "<string>",
"last_name": "<string>",
"date_of_birth": "2023-12-25",
"address": {
"street": "<string>",
"city": "<string>",
"state_province": "<string>",
"zip_postal_code": "<string>",
"country": "<string>"
},
"email": "[email protected]",
"phone": "<string>",
"insurance_details": {
"data": {
"group_number": "<string>",
"payer": "<string>",
"membership_number": "<string>",
"rx_bin": "<string>",
"rx_group": "<string>"
},
"assets": [
{
"name": "<string>",
"type": "Insurance Card Front",
"url": "<string>"
}
]
},
"metadata": {
"patient_id": "<string>"
}
},
"programId": "<string>",
"prescription": {
"drug_name": "<string>",
"dosage": "<string>",
"directions": "<string>",
"extra": {}
},
"evidence": [
{
"type": "Visit Note",
"date_created": "2023-11-07T05:31:56Z",
"content": {},
"assets": [
{
"name": "<string>",
"type": "Insurance Card Front",
"url": "<string>"
}
]
}
],
"metadata": {
"enrollment_id": "<string>"
}
}'