---
title: "Gets all portal subscriptions"
url: "https://earlyaccess.developers.bynder.com/apis/webhooks-api/versions/876c7972-129f-4814-b12a-964ddc49f2b6/operations/listSubscriptionsRoute"
---

> Full API specification: https://earlyaccess.developers.bynder.com/apis/webhooks-api/versions/876c7972-129f-4814-b12a-964ddc49f2b6.md

# Gets all portal subscriptions

`GET` `/webhooks/api/subscriptions/list`

Operation ID: `listSubscriptionsRoute`

Gets portal subscriptions

## Request body

Content types: `*/*`

## Responses

- `200` - Successfully listed subscriptions
- `400` - Failed to list subscriptions

## OpenAPI definition

```yaml
openapi: 3.0.1
info:
  title: webhooks-api
  version: 1.0.0
servers:
  - description: Local Development
    url: http://0.0.0.0:8081
paths:
  /webhooks/api/subscriptions/list:
    get:
      description: Gets portal subscriptions
      operationId: listSubscriptionsRoute
      requestBody:
        content:
          "*/*":
            schema:
              $ref: "#/components/schemas/ActorSystemObject"
      responses:
        "200":
          content:
            application/json:
              schema:
                $ref: "#/components/schemas/ListSubscriptionsResponse"
          description: Successfully listed subscriptions
        "400":
          description: Failed to list subscriptions
      summary: Gets all portal subscriptions
security: []
components:
  schemas:
    ActorSystemObject:
      properties:
        whenTerminated:
          type: object
      required:
        - whenTerminated
      type: object
    ListSubscriptionsResponse:
      properties:
        configs:
          items:
            $ref: "#/components/schemas/ListSubscriptionItem"
          type: array
        message:
          type: string
        success:
          type: boolean
      required:
        - configs
        - message
        - success
      type: object
    ListSubscriptionItem:
      properties:
        configId:
          type: string
        endpoint:
          type: string
        events:
          items:
            type: string
          type: array
        name:
          type: string
        protocol:
          type: string
        status:
          format: int32
          type: integer
      required:
        - configId
        - endpoint
        - events
        - name
        - protocol
        - status
      type: object
```
