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

# Listar Eventos Disponíveis



## OpenAPI

````yaml GET /webhook/events
openapi: 3.0.0
info:
  title: payera-api
  description: Documentação de endpoints e entidades da payera
  version: '1.0'
  contact: {}
servers:
  - url: https://api.rivoopay.com
security:
  - ApiKeyAuth: []
paths:
  /webhook/events:
    get:
      tags:
        - Webhook
      summary: Get available webhook events
      operationId: WebhookController_getAvailableEvents
      responses:
        '200':
          description: List of available events
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/WebhookEventsListDTO'
components:
  schemas:
    WebhookEventsListDTO:
      type: object
      properties:
        events:
          description: Available webhook events
          example:
            - value: charge.pending
              label: Charge Pending
            - value: charge.processing
              label: Charge Processing
            - value: charge.paid
              label: Charge Paid
            - value: charge.received
              label: Charge Received
            - value: charge.expired
              label: Charge Expired
            - value: subscription.authorized
              label: Subscription Authorized
            - value: subscription.rejected
              label: Subscription Rejected
            - value: subscription.charge.paid
              label: Subscription Charge Paid
            - value: subscription.charge.failed
              label: Subscription Charge Failed
          type: array
          items:
            type: string
      required:
        - events
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-KEY

````