> ## 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.

# Obtener costos de un tecnico por su ID

> Operacion: Obtener costos de un tecnico por su ID.



## OpenAPI

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

````