> ## 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

> Returns every inbound-webhook subscription attached to a connection, with decrypted secrets included so the runtime-control plane can verify inbound HMAC signatures.



## OpenAPI

````yaml /openapi.json get /system/inbound-webhook-subscriptions/{connection_id}
openapi: 3.1.0
info:
  title: Marfa API
  version: 4.2.0
  description: Typed data layer for structured personal data
servers: []
security: []
paths:
  /system/inbound-webhook-subscriptions/{connection_id}:
    get:
      tags:
        - System
      summary: List inbound webhook subscriptions
      description: >-
        Returns every inbound-webhook subscription attached to a connection,
        with decrypted secrets included so the runtime-control plane can verify
        inbound HMAC signatures.
      parameters:
        - schema:
            type: string
            minLength: 1
          required: true
          name: connection_id
          in: path
      responses:
        '200':
          description: Subscriptions matching the connection (decrypted secrets)
          content:
            application/json:
              schema:
                type: object
                properties:
                  subscriptions:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                        connection_id:
                          type: string
                        external_service_id:
                          type: string
                        secret:
                          type: string
                        verification_method:
                          type: string
                          enum:
                            - hmac-sha256
                            - slack
                            - stripe
                            - github
                        verification_adapter_id:
                          type: string
                        integration_name:
                          type: string
                        events:
                          type: array
                          items:
                            type: string
                        disabled:
                          type: boolean
                      required:
                        - id
                        - connection_id
                        - secret
                        - verification_method
                        - events
                        - disabled
                required:
                  - subscriptions
        '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 lacks is_platform: true'
          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
      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_...)

````