> ## Documentation Index
> Fetch the complete documentation index at: https://docs.simplepay.mx/llms.txt
> Use this file to discover all available pages before exploring further.

# List booking event types

> Referencia detallada para GET /v1/bookable-payments/event_types.

## Uso

Usalo dentro de Bookable Payments para modelar inventario reservado, calcular disponibilidad, crear holds, convertirlos en checkout y confirmar bookings.

## Antes de llamar

| Tema             | Detalle                                          |
| ---------------- | ------------------------------------------------ |
| Metodo           | `GET`                                            |
| Ruta             | `/v1/bookable-payments/event_types`              |
| Auth             | Bearer API key del ambiente correcto.            |
| Scope            | `availability:read`                              |
| Idempotencia     | No aplica para lecturas.                         |
| Guia relacionada | [Bookable Payments](/bookable-payments/overview) |

## Patron recomendado

* Ejecuta esta lectura desde backend cuando incluya datos privados del tenant.
* Confirma inventario final con `booking.confirmed` o una lectura de booking, no solo con una URL de retorno.
* Consulta el bloque OpenAPI de esta pagina para el shape exacto de parametros, body y respuestas.

## Ejemplo minimo

```bash terminal theme={"theme":{"light":"github-light","dark":"github-dark"}}
curl -sS "https://api.simplepay.mx/v1/bookable-payments/event_types" \
  -H "Authorization: Bearer $SIMPLEPAY_API_KEY"
```

## Errores a manejar

* `400` indica payload, parametros o estado invalido.
* `401` o `403` indican API key, ambiente o scopes incorrectos.
* `429` y `5xx` se pueden reintentar con backoff; en writes conserva la misma idempotency key.

## Contrato OpenAPI

El playground, parametros, body y respuestas de abajo salen de `/openapi.json`. Si el contrato cambia, actualiza la spec y regenera esta pagina.


## OpenAPI

````yaml openapi.json GET /v1/bookable-payments/event_types
openapi: 3.1.0
info:
  title: SimplePay API
  version: '2026-06-13'
servers:
  - url: https://api.simplepay.mx
security:
  - SimplePayApiKey: []
paths:
  /v1/bookable-payments/event_types:
    get:
      summary: List booking event types
      operationId: listBookingEventTypes
      responses:
        '200':
          description: Booking event types
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BookingEventTypeListResponse'
components:
  schemas:
    BookingEventTypeListResponse:
      type: object
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/BookingEventType'
        object:
          const: list
    BookingEventType:
      type: object
      properties:
        active:
          type: boolean
        bookingFormFields:
          type: array
          items:
            type: object
            additionalProperties: true
        bookingWindowDays:
          type: integer
          minimum: 1
        bufferAfterMinutes:
          type: integer
          minimum: 0
        bufferBeforeMinutes:
          type: integer
          minimum: 0
        cancellationPolicy:
          type: object
          additionalProperties: true
        capacity:
          type: integer
          minimum: 1
        confirmationPolicy:
          enum:
            - automatic
            - manual
            - payment_required
        defaultPrice:
          type: object
          properties:
            amount:
              type: integer
              minimum: 0
            currency:
              type: string
              pattern: ^[a-z]{3}$
            id:
              type: string
              format: uuid
        defaultPriceId:
          type: string
          format: uuid
        description:
          type: string
        durationChoicesMinutes:
          type: array
          items:
            type: integer
            minimum: 1
        durationMinutes:
          type: integer
          minimum: 1
        id:
          type: string
          format: uuid
        inventoryMode:
          enum:
            - capacity_pool
            - date_range
            - instant
            - seated
            - unit_assignment
        kind:
          enum:
            - appointment
            - class
            - scheduled_offer
            - experience
            - rental
            - service
            - date_range
        maximumQuantity:
          type: integer
          minimum: 1
        metadata:
          type: object
          additionalProperties: true
        minimumNoticeMinutes:
          type: integer
          minimum: 0
        minimumQuantity:
          type: integer
          minimum: 1
        object:
          const: booking_event_type
        paymentConfig:
          type: object
          additionalProperties: true
        paymentRequirement:
          enum:
            - deposit
            - none
            - optional
            - required
        product:
          type: object
          properties:
            id:
              type: string
              format: uuid
            name:
              type: string
        productId:
          type: string
          format: uuid
        reschedulePolicy:
          type: object
          additionalProperties: true
        slug:
          type: string
        slotIntervalMinutes:
          type: integer
          minimum: 1
        timeZone:
          type: string
        title:
          type: string
        updatedAt:
          type: string
          format: date-time
  securitySchemes:
    SimplePayApiKey:
      type: http
      scheme: bearer

````