curl -X PUT "https://api.nevatal.com/api/v1/patients/pat_abc123" \
-H "Authorization: Bearer nvtl_your_api_key" \
-H "Content-Type: application/json" \
-d '{
"email": "maria.garcia@newdomain.com",
"phone": "+573009999999"
}'
{
"id": "pat_abc123",
"firstName": "María",
"lastName": "García",
"email": "maria.garcia@newdomain.com",
"phone": "+573009999999",
"documentType": "CC",
"documentNumber": "1234567890",
"updatedAt": "2025-03-16T14:00:00Z"
}
Patients
Update Patient
Update an existing patient’s information
PUT
/
api
/
v1
/
patients
/
{id}
curl -X PUT "https://api.nevatal.com/api/v1/patients/pat_abc123" \
-H "Authorization: Bearer nvtl_your_api_key" \
-H "Content-Type: application/json" \
-d '{
"email": "maria.garcia@newdomain.com",
"phone": "+573009999999"
}'
{
"id": "pat_abc123",
"firstName": "María",
"lastName": "García",
"email": "maria.garcia@newdomain.com",
"phone": "+573009999999",
"documentType": "CC",
"documentNumber": "1234567890",
"updatedAt": "2025-03-16T14:00:00Z"
}
Path Parameters
string
required
The patient ID
Body Parameters
All fields are optional. Only include the fields you want to update.string
Patient’s first name
string
Patient’s last name
string
Email address
string
Phone number with country code
string
Date of birth (
YYYY-MM-DD)string
Gender:
male, female, otherobject
Patient address object
curl -X PUT "https://api.nevatal.com/api/v1/patients/pat_abc123" \
-H "Authorization: Bearer nvtl_your_api_key" \
-H "Content-Type: application/json" \
-d '{
"email": "maria.garcia@newdomain.com",
"phone": "+573009999999"
}'
{
"id": "pat_abc123",
"firstName": "María",
"lastName": "García",
"email": "maria.garcia@newdomain.com",
"phone": "+573009999999",
"documentType": "CC",
"documentNumber": "1234567890",
"updatedAt": "2025-03-16T14:00:00Z"
}

