curl --request PATCH \
--url https://api.usecobalt.com/v1/patients/{id} \
--header 'Content-Type: application/json' \
--header 'access_token: <api-key>' \
--header 'client_id: <api-key>' \
--header 'client_secret: <api-key>' \
--data '
{
"last_name": "<string>",
"first_name": "<string>",
"phone": "<string>",
"dob": "2023-12-25",
"sex": "male",
"cell_phone": "<string>",
"address_street": "<string>",
"address_city": "<string>",
"address_state": "<string>",
"address_zip": "<string>",
"referring_provider": "<string>",
"insurance_name": "<string>",
"insurance_subscriber_number": "<string>",
"insurance_sequence": "primary"
}
'