Skip to main content
POST
/
api
/
v1
/
patients
curl -X POST "https://api.nevatal.com/api/v1/patients" \
  -H "Authorization: Bearer nvtl_your_api_key" \
  -H "Content-Type: application/json" \
  -d '{
    "firstName": "María",
    "lastName": "García",
    "phone": "+573001234567",
    "email": "maria@example.com",
    "documentType": "CC",
    "documentNumber": "1234567890",
    "dateOfBirth": "1990-05-15",
    "gender": "female"
  }'
{
  "id": "pat_abc123",
  "firstName": "María",
  "lastName": "García",
  "email": "maria@example.com",
  "phone": "+573001234567",
  "documentType": "CC",
  "documentNumber": "1234567890",
  "dateOfBirth": "1990-05-15",
  "gender": "female",
  "status": "active",
  "createdAt": "2025-03-15T10:30:00Z"
}

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.

Body Parameters

firstName
string
required
Patient’s first name
lastName
string
required
Patient’s last name
email
string
Email address
phone
string
required
Phone number with country code (e.g., +573001234567)
documentType
string
required
Document type: CC (Cédula), CE (Cédula de Extranjería), TI (Tarjeta de Identidad), PA (Pasaporte), RC (Registro Civil)
documentNumber
string
required
Document number (unique within the clinic)
dateOfBirth
string
Date of birth in YYYY-MM-DD format
gender
string
Patient gender: male, female, other
address
object
Patient address
curl -X POST "https://api.nevatal.com/api/v1/patients" \
  -H "Authorization: Bearer nvtl_your_api_key" \
  -H "Content-Type: application/json" \
  -d '{
    "firstName": "María",
    "lastName": "García",
    "phone": "+573001234567",
    "email": "maria@example.com",
    "documentType": "CC",
    "documentNumber": "1234567890",
    "dateOfBirth": "1990-05-15",
    "gender": "female"
  }'
{
  "id": "pat_abc123",
  "firstName": "María",
  "lastName": "García",
  "email": "maria@example.com",
  "phone": "+573001234567",
  "documentType": "CC",
  "documentNumber": "1234567890",
  "dateOfBirth": "1990-05-15",
  "gender": "female",
  "status": "active",
  "createdAt": "2025-03-15T10:30:00Z"
}