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

# Crear paciente

> Requiere permiso write. Solo datos de contacto/identificación (nunca clínicos).



## OpenAPI

````yaml /api-reference/openapi.json post /patients
openapi: 3.1.0
info:
  title: OCLÜ API Pública
  description: >-
    API para integrar OCLÜ con sistemas externos (n8n, Make, Zapier, CRMs).
    Autenticación por API key. Las fechas y horas son hora local de la clínica.
    La API nunca expone datos clínicos.
  version: 1.0.0
servers:
  - url: https://{tenant}.oclucrm.com/api/v1
    description: Reemplazá {tenant} por el subdominio de tu clínica
    variables:
      tenant:
        default: tu-clinica
security:
  - apiKey: []
paths:
  /patients:
    post:
      tags:
        - Pacientes
      summary: Crear paciente
      description: >-
        Requiere permiso write. Solo datos de contacto/identificación (nunca
        clínicos).
      parameters:
        - $ref: '#/components/parameters/CurrentOrgId'
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PatientInput'
      responses:
        '201':
          description: Creado
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    $ref: '#/components/schemas/Patient'
        '400':
          $ref: '#/components/responses/ValidationError'
        '403':
          $ref: '#/components/responses/Forbidden'
components:
  parameters:
    CurrentOrgId:
      name: Current-Org-Id
      in: header
      required: true
      description: ID de la sede (ver GET /me)
      schema:
        type: integer
        example: 1
  schemas:
    PatientInput:
      type: object
      required:
        - name
        - lastname
        - country_id
        - gender_id
      properties:
        name:
          type: string
        lastname:
          type: string
        document:
          type: string
        document_type:
          type: string
          enum:
            - DNI
            - NIE
            - PASSPORT
            - CIF
            - CUIT
            - OTHER
        email:
          type: string
        phone:
          type: string
        phone_prefix_id:
          type: integer
        birth_date:
          type: string
          example: '1990-05-20'
        country_id:
          type: integer
        gender_id:
          type: integer
        external_id:
          type: integer
    Patient:
      type: object
      properties:
        id:
          type: integer
        external_id:
          type: integer
          nullable: true
        name:
          type: string
        lastname:
          type: string
        full_name:
          type: string
        document:
          type: string
        document_type:
          type: string
        email:
          type: string
        phone:
          type: string
        birth_date:
          type: string
        gender_id:
          type: integer
        country_id:
          type: integer
    Error:
      type: object
      properties:
        error:
          type: string
        code:
          type: string
  responses:
    ValidationError:
      description: Datos inválidos
      content:
        application/json:
          schema:
            type: object
            properties:
              error:
                type: object
    Forbidden:
      description: Sin permiso (scope), sin acceso a la sede, o add-on no habilitado
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
  securitySchemes:
    apiKey:
      type: http
      scheme: bearer
      description: 'API key de la clínica. Header: Authorization: Bearer oclu_live_...'

````