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

# Get all activity types

> Operacion: Get all activity types.



## OpenAPI

````yaml /generated/specs/operations.json get /api/v1/activity-type/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/activity-type/all:
    get:
      tags:
        - Activity Types
      summary: Get all activity types
      description: 'Operacion: Get all activity types.'
      operationId: ActivityTypeController_findAll
      parameters: []
      responses:
        '200':
          description: List of activity types
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ActivityTypeResponseDto'
      security:
        - bearerAuth: []
components:
  schemas:
    ActivityTypeResponseDto:
      type: object
      properties:
        id:
          type: number
          description: ID del tipo de actividad
        name:
          type: string
          description: Nombre del tipo de actividad
        is_active:
          type: boolean
          description: Estado activo/inactivo
      required:
        - id
        - name
        - is_active
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: Bearer token authentication

````