> ## 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 costos de un tecnico

> Operacion: Actualizar costos de un tecnico.



## OpenAPI

````yaml /generated/specs/operations.json put /api/v1/technician_cost/update/{technician_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_cost/update/{technician_id}:
    put:
      tags:
        - TechnicianCost
      summary: Actualizar costos de un tecnico
      description: 'Operacion: Actualizar costos de un tecnico.'
      operationId: TechnicianCostController_update
      parameters:
        - name: technician_id
          required: true
          in: path
          description: ID del tecnico (UUID)
          schema:
            type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateUpdateTechnicianCostDto'
      responses:
        '200':
          description: Costos actualizados exitosamente
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TechnicianCostResponseDto'
        '404':
          description: Costos no encontrados para el tecnico
      security:
        - bearerAuth: []
components:
  schemas:
    CreateUpdateTechnicianCostDto:
      type: object
      properties: {}
    TechnicianCostResponseDto:
      type: object
      properties: {}
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: Bearer token authentication

````