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

# Actualizar técnico

> Operacion: Actualizar técnico.



## OpenAPI

````yaml /generated/specs/operations.json put /api/v1/technician/update/{id}
openapi: 3.0.0
info:
  title: Raul API - Operaciones
  description: Suscripciones, GPS, actividades, visitas y operacion tecnica.
  version: 2.0.0
  contact: {}
servers:
  - url: https://api.raul.ugps.io
    description: Production
security: []
tags: []
paths:
  /api/v1/technician/update/{id}:
    put:
      tags:
        - Technicians
      summary: Actualizar técnico
      description: 'Operacion: Actualizar técnico.'
      operationId: TechniciansController_update
      parameters:
        - name: id
          required: true
          in: path
          description: ID del técnico (UUID)
          schema:
            type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpdateTechnicianDto'
      responses:
        '200':
          description: Técnico actualizado exitosamente
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TechnicianResponseDto'
        '404':
          description: Técnico no encontrado
      security:
        - bearerAuth: []
components:
  schemas:
    UpdateTechnicianDto:
      type: object
      properties:
        technician_name:
          type: string
          description: Nombre del técnico
          example: Juan Pérez
        city_id:
          type: string
          description: ID de la ciudad
          example: uuid
        phone:
          type: string
          description: Teléfono
          example: '+56912345678'
        email:
          type: string
          description: Email
          example: tecnico@example.com
        address:
          type: string
          description: Dirección
          example: Av. Providencia 123
        is_active:
          type: boolean
          description: Estado activo/inactivo del técnico
          example: true
    TechnicianResponseDto:
      type: object
      properties: {}
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: Bearer token authentication

````