---
title: "SeqListSubscriptionItem"
url: "https://earlyaccess.developers.bynder.com/apis/webhooks-api/versions/876c7972-129f-4814-b12a-964ddc49f2b6/schemas/SeqListSubscriptionItem"
---

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

# SeqListSubscriptionItem

## 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
components:
  schemas:
    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
    SeqListSubscriptionItem:
      items:
        $ref: "#/components/schemas/ListSubscriptionItem"
      type: array
```
