# Get All Subscriptions

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /webhooksubscription/all:
    get:
      summary: Get All Subscriptions
      deprecated: false
      description: >-
        ### Description :

        Client applications subscribe for webhook notifications and listen for
        the various events pertaining to their data in Beetexting, including;
        create or update contact, delete contact, and message outbound events.
        This API helps get a list of all subscriptions created by the
        organization. 
         
        ### URL : 

        https://connect.beetexting/prod/webhooksubscription/all

        (While sending the request please make sure to append
        https://connect.beetexting.com/prod  if the url in the cUrl command
        starts with /message ...)


        **Note : To add the OAuth2.0 Auth Token please see the section 'OAuth2.0
        For Beetexting' and 'Postman How-to for Beetexting section'
      tags:
        - APIs/Webhook Subscriptions API
      parameters:
        - name: page
          in: query
          description: |-
            Zero-based page index (0..N) 

            Default value: 0 
          required: false
          example: 2
          schema:
            type: integer
        - name: size
          in: query
          description: |-
            The size of the page to be returned 

            Default value: 20 
          required: false
          example: 10
          schema:
            type: integer
        - name: sort
          in: query
          description: >-
            Sorting criteria in the format: property,(asc|desc). The default
            sort order is ascending. Multiple sort criteria are supported.  


            Default value: List [ "createdDateTime,ASC" ] 
          required: false
          schema:
            type: array
            items:
              type: string
        - name: x-api-key
          in: header
          description: ''
          required: true
          example: HvG7OZaxgz3raDMzX9CYp9105hV9VwDa6zrCS234
          schema:
            type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties: {}
              example:
                totalElements: 0
                totalPages: 0
                pageable:
                  unpaged: true
                  pageSize: 0
                  paged: true
                  pageNumber: 0
                  offset: 0
                  sort:
                    - direction: string
                      nullHandling: string
                      ascending: true
                      property: string
                      ignoreCase: true
                first: true
                last: true
                size: 0
                content:
                  - id: string
                    uri: string
                    eventFilters:
                      - string
                    disabledFilters:
                      - filter: string
                        reason: string
                        message: string
                        orgId: string
                        id: string
                    expirationTime: '2024-03-10T18:07:52.534Z'
                    expiresIn: 0
                    status: ACTIVE
                    createdDateTime: '2023-06-10T18:07:52.534Z'
                    lastUpdateDateTime: '2023-06-10T20:07:52.534Z'
                    orgId: string
                number: 0
                sort:
                  - direction: string
                    nullHandling: string
                    ascending: true
                    property: string
                    ignoreCase: true
                numberOfElements: 0
                empty: true
          headers: {}
          x-apidog-name: Success
      security:
        - oauth21: []
      x-apidog-folder: APIs/Webhook Subscriptions API
      x-apidog-status: released
      x-run-in-apidog: https://app.apidog.com/web/project/1058487/apis/api-21351601-run
components:
  schemas: {}
  securitySchemes:
    oauth21:
      type: oauth2
      flows:
        authorizationCode:
          authorizationUrl: ''
          tokenUrl: ''
          refreshUrl: ''
          scopes: {}
          x-apidog:
            addTokenTo: header
            useTokenType: access_token
            queryParamKey: access_token
            headerPrefix: Bearer
            codeVerifier: ''
            challengeAlgorithm: S256
            clientAuthentication: header
            useTokenConfigAsRefreshTokenConfig: true
            authRequestParams: []
            tokenRequestParams: []
servers: []
security: []

```
