curl --request POST \
--url https://api.iolokis.com/patients/create_patient \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"first_name": "<string>",
"last_name": "<string>",
"age": 123,
"gender": "<string>",
"dirPath": [
"<string>"
],
"phone_number": "<string>",
"workspace_id": 123
}
'