curl --request POST \
--url https://om-staging.mylifeforce.com/api/m2m/patient \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"email": "<string>",
"gender": "male",
"first_name": "<string>",
"last_name": "<string>",
"birthdate": "1983-06-04",
"address": {
"line1": "<string>",
"line2": "<string>",
"city": "<string>",
"state": "<string>",
"zipcode": "<string>"
}
}
'