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

# List inbound webhook subscriptions on a connection

> Returns every inbound-webhook subscription attached to the connection. Secrets are redacted in list responses — they only return at creation time. Use to render an operator surface showing what an integration is subscribed to upstream.



## OpenAPI

````yaml /openapi.json get /connections/{id}/inbound-webhooks
openapi: 3.1.0
info:
  title: Marfa API
  version: 4.2.0
  description: Typed data layer for structured personal data
servers: []
security: []
paths:
  /connections/{id}/inbound-webhooks:
    get:
      tags:
        - Inbound Webhooks
      summary: List inbound webhook subscriptions on a connection
      description: >-
        Returns every inbound-webhook subscription attached to the connection.
        Secrets are redacted in list responses — they only return at creation
        time. Use to render an operator surface showing what an integration is
        subscribed to upstream.
      parameters:
        - schema:
            type: string
          required: true
          name: id
          in: path
      responses:
        '200':
          description: Subscriptions for this connection (secrets redacted)
          content:
            application/json:
              schema:
                type: object
                properties:
                  inbound_webhooks:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                        tenant_id:
                          type: string
                        connection_id:
                          type: string
                        external_service_id:
                          type: string
                        secret_redacted:
                          type: string
                        verification_method:
                          type: string
                          enum:
                            - hmac-sha256
                            - slack
                            - stripe
                            - github
                        verification_adapter_id:
                          type: string
                        events:
                          type: array
                          items:
                            type: string
                        disabled:
                          type: boolean
                        created_at:
                          type: string
                        updated_at:
                          type: string
                      required:
                        - id
                        - connection_id
                        - secret_redacted
                        - verification_method
                        - events
                        - disabled
                        - created_at
                        - updated_at
                required:
                  - inbound_webhooks
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: object
                    properties:
                      code:
                        type: string
                        enum:
                          - unauthorized
                      message:
                        type: string
                      details:
                        type: object
                        additionalProperties:
                          nullable: true
                    required:
                      - code
                      - message
                required:
                  - error
        '403':
          description: Caller cannot read this connection
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: object
                    properties:
                      code:
                        type: string
                        enum:
                          - forbidden
                      message:
                        type: string
                      details:
                        type: object
                        additionalProperties:
                          nullable: true
                    required:
                      - code
                      - message
                required:
                  - error
        '404':
          description: Connection not found
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: object
                    properties:
                      code:
                        type: string
                        enum:
                          - connection_not_found
                      message:
                        type: string
                      details:
                        type: object
                        additionalProperties:
                          nullable: true
                    required:
                      - code
                      - message
                required:
                  - error
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: API Key or OAuth Token
      description: Pass an API key (marfa_k1_...) or OAuth access token (marfa_at_...)

````