> ## 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 todas las marcas de GPS

> Operacion: Obtener todas las marcas de GPS.



## OpenAPI

````yaml /generated/specs/operations.json get /api/v1/gps_brands/get_all
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_brands/get_all:
    get:
      tags:
        - GPS Brands
      summary: Obtener todas las marcas de GPS
      description: 'Operacion: Obtener todas las marcas de GPS.'
      operationId: GpsBrandsController_getAllBrands
      parameters: []
      responses:
        '200':
          description: Lista de marcas obtenida exitosamente
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/GpsBrandResponseDto'
      security:
        - bearerAuth: []
components:
  schemas:
    GpsBrandResponseDto:
      type: object
      properties:
        id:
          type: number
          description: ID de la marca
        name:
          type: string
          description: Nombre de la marca
        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

````