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

# Deliver an inbound webhook

> Public receipt endpoint that accepts a signed payload from an external service. The platform verifies the signature using the connection manifest's `webhook_verification.method` adapter, deduplicates against the sender's `external_delivery_id` (a unique index on `(subscription_id, external_delivery_id)` collapses repeat presentations to the original receipt row), and enqueues the envelope for the per-integration Worker. Failed verification returns `401 invalid_signature` and the body is not forwarded. See [Inbound webhooks](/api/inbound-webhooks).



## OpenAPI

````yaml /openapi.json post /webhooks/inbound/{id}
openapi: 3.1.0
info:
  title: Marfa API
  version: 4.2.0
  description: Typed data layer for structured personal data
servers: []
security: []
paths:
  /webhooks/inbound/{id}:
    post:
      tags:
        - Inbound Webhooks
      summary: Deliver an inbound webhook
      description: >-
        Public receipt endpoint that accepts a signed payload from an external
        service. The platform verifies the signature using the connection
        manifest's `webhook_verification.method` adapter, deduplicates against
        the sender's `external_delivery_id` (a unique index on
        `(subscription_id, external_delivery_id)` collapses repeat presentations
        to the original receipt row), and enqueues the envelope for the
        per-integration Worker. Failed verification returns `401
        invalid_signature` and the body is not forwarded. See [Inbound
        webhooks](/api/inbound-webhooks).
      parameters:
        - schema:
            type: string
          required: true
          name: id
          in: path
      responses:
        '200':
          description: Verified and accepted (or duplicate, idempotent)
          content:
            application/json:
              schema:
                type: object
                properties:
                  ok:
                    type: boolean
                    enum:
                      - true
                required:
                  - ok
        '401':
          description: Signature verification failed
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: object
                    properties:
                      code:
                        type: string
                        enum:
                          - inbound_webhook_verification_failed
                      message:
                        type: string
                      details:
                        type: object
                        additionalProperties:
                          nullable: true
                    required:
                      - code
                      - message
                required:
                  - error
        '404':
          description: Subscription not found
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: object
                    properties:
                      code:
                        type: string
                        enum:
                          - inbound_webhook_not_found
                      message:
                        type: string
                      details:
                        type: object
                        additionalProperties:
                          nullable: true
                    required:
                      - code
                      - message
                required:
                  - error
        '410':
          description: Subscription is disabled
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: object
                    properties:
                      code:
                        type: string
                        enum:
                          - inbound_webhook_disabled
                      message:
                        type: string
                      details:
                        type: object
                        additionalProperties:
                          nullable: true
                    required:
                      - code
                      - message
                required:
                  - error

````