> ## 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 categoría de GPS por ID

> Operacion: Obtener categoría de GPS por ID.



## OpenAPI

````yaml /generated/specs/operations.json get /api/v1/gps_categories/get/{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/gps_categories/get/{id}:
    get:
      tags:
        - GPS Categories
      summary: Obtener categoría de GPS por ID
      description: 'Operacion: Obtener categoría de GPS por ID.'
      operationId: GpsCategoriesController_getCategoryById
      parameters:
        - name: id
          required: true
          in: path
          description: ID de la categoría
          schema:
            type: number
      responses:
        '200':
          description: Categoría obtenida exitosamente
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GpsCategoryResponseDto'
        '404':
          description: Categoría no encontrada
      security:
        - bearerAuth: []
components:
  schemas:
    GpsCategoryResponseDto:
      type: object
      properties:
        id:
          type: number
          description: ID de la categoría
        name:
          type: string
          description: Nombre de la categoría
        created_at:
          format: date-time
          type: string
          description: Fecha de creación
        updated_at:
          format: date-time
          type: string
          description: Fecha de actualización
      required:
        - id
        - name
        - created_at
        - updated_at
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: Bearer token authentication

````