Skip to main content
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

name
string
required
Procedure name
code
string
Procedure code (e.g., CUPS code for Colombia)
specialty
string
required
Medical specialty
description
string
Procedure description
duration
integer
required
Duration in minutes
price
number
required
Price in COP
doctorIds
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"
}