curl -X POST "https://api.nevatal.com/api/v1/clinical-procedures" \
-H "Authorization: Bearer nvtl_your_api_key" \
-H "Content-Type: application/json" \
-d '{
"name": "Limpieza Dental",
"code": "997310",
"specialty": "Odontología General",
"duration": 45,
"price": 120000,
"doctorIds": ["usr_doctor456"]
}'
{
"id": "proc_limpieza_dental",
"name": "Limpieza Dental",
"code": "997310",
"specialty": "Odontología General",
"duration": 45,
"price": 120000,
"currency": "COP",
"status": "active",
"createdAt": "2025-03-16T09:00:00Z"
}
Clinical Procedures
Create Clinical Procedure
Add a new procedure to your clinic’s catalog
POST
/
api
/
v1
/
clinical-procedures
curl -X POST "https://api.nevatal.com/api/v1/clinical-procedures" \
-H "Authorization: Bearer nvtl_your_api_key" \
-H "Content-Type: application/json" \
-d '{
"name": "Limpieza Dental",
"code": "997310",
"specialty": "Odontología General",
"duration": 45,
"price": 120000,
"doctorIds": ["usr_doctor456"]
}'
{
"id": "proc_limpieza_dental",
"name": "Limpieza Dental",
"code": "997310",
"specialty": "Odontología General",
"duration": 45,
"price": 120000,
"currency": "COP",
"status": "active",
"createdAt": "2025-03-16T09:00:00Z"
}
Body Parameters
string
required
Procedure name
string
Procedure code (e.g., CUPS code for Colombia)
string
required
Medical specialty
string
Procedure description
integer
required
Duration in minutes
number
required
Price in COP
array
List of doctor IDs who can perform this procedure
curl -X POST "https://api.nevatal.com/api/v1/clinical-procedures" \
-H "Authorization: Bearer nvtl_your_api_key" \
-H "Content-Type: application/json" \
-d '{
"name": "Limpieza Dental",
"code": "997310",
"specialty": "Odontología General",
"duration": 45,
"price": 120000,
"doctorIds": ["usr_doctor456"]
}'
{
"id": "proc_limpieza_dental",
"name": "Limpieza Dental",
"code": "997310",
"specialty": "Odontología General",
"duration": 45,
"price": 120000,
"currency": "COP",
"status": "active",
"createdAt": "2025-03-16T09:00:00Z"
}

