> ## Documentation Index
> Fetch the complete documentation index at: https://docs.nevatal.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Create Clinical Procedure

> Add a new procedure to your clinic's catalog

## Body Parameters

<ParamField body="name" type="string" required>Procedure name</ParamField>
<ParamField body="code" type="string">Procedure code (e.g., CUPS code for Colombia)</ParamField>
<ParamField body="specialty" type="string" required>Medical specialty</ParamField>
<ParamField body="description" type="string">Procedure description</ParamField>
<ParamField body="duration" type="integer" required>Duration in minutes</ParamField>
<ParamField body="price" type="number" required>Price in COP</ParamField>
<ParamField body="doctorIds" type="array">List of doctor IDs who can perform this procedure</ParamField>

<RequestExample>
  ```bash cURL theme={null}
  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"]
    }'
  ```
</RequestExample>

<ResponseExample>
  ```json 201 theme={null}
  {
    "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"
  }
  ```
</ResponseExample>
