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

# GET /events



## OpenAPI

````yaml /openapi/nimbo_webhooks.yml get /events
openapi: 3.0.0
info:
  title: Nimbo webhooks
  version: 1.0.0
  description: >-
    Nimbo API reference. Use the API host and integration access provided by
    Nimbo.
servers:
  - url: https://api.example.test
    description: Reference only; confirm your integration host with Nimbo
security: []
paths:
  /events:
    get:
      summary: GET /events
      operationId: legacy_nimbo_webhooks_get__events
      parameters: []
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                offset:
                  type: integer
                limit:
                  type: integer
                topic:
                  type: string
                name:
                  type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                type: array
                items:
                  type: object
                  properties:
                    id:
                      type: integer
                    topic:
                      type: string
                    name:
                      type: string
                    source:
                      type: string
                    behaviour:
                      type: string
                    compensating_event:
                      type: object
                    previous_event:
                      type: string
                    root_event:
                      type: string
                    event_schema_version:
                      type: string
                    value:
                      type: object
                      properties:
                        id:
                          type: integer
                        first_name:
                          type: string
                        last_name:
                          type: string
                        telephone:
                          nullable: true
                        email:
                          type: string
                          format: email
                        created_at:
                          type: string
                          format: date-time
                        updated_at:
                          type: string
                          format: date-time
                        born_at:
                          type: string
                          format: date
                        gender:
                          type: string
                        avatar_file_name:
                          nullable: true
                        avatar_content_type:
                          nullable: true
                        avatar_file_size:
                          nullable: true
                        avatar_updated_at:
                          nullable: true
                        telephone2:
                          type: string
                        person_attributes:
                          type: object
                          properties:
                            send_reminders:
                              type: boolean
                        account_id:
                          type: integer
                        address_state_id:
                          type: integer
                        organization_id:
                          type: integer
                        notes:
                          nullable: true
                        deleted_at:
                          nullable: true
                        phone_country_id:
                          type: integer
                        creator_id:
                          type: integer
                        updater_id:
                          type: integer
                        is_migrated:
                          type: boolean
                        without_cellphone:
                          type: boolean
                        nimbochat_invitation_date:
                          nullable: true
                        admission_form:
                          type: boolean
                        cirrus_patient_id:
                          nullable: true
                        person_token_id:
                          nullable: true
                        medical_record:
                          type: string
                        send_welcome_email:
                          type: boolean
                    key:
                      type: string
                    domain:
                      type: string
                      format: style
                    organization_id:
                      type: integer
                    tries_left:
                      type: integer
                    created_at:
                      type: string
                      format: date-time
                    logs:
                      type: array
                      items:
                        type: object
                        properties:
                          id:
                            type: integer
                          target_url:
                            type: string
                            format: uri
                          authentication_data:
                            type: object
                            properties:
                              secret:
                                type: string
                          request:
                            type: string
                            format: style
                          response:
                            type: string
                            format: style
                          event_id:
                            type: string
                          response_code:
                            nullable: true
                          retries_left:
                            type: integer
                          created_at:
                            type: string
                            format: date-time
          description: Successful response
      security:
        - BearerAuth: []
components:
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer

````