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

# Notify webhook delivery (internal)

> Internal fanout to deliver a submission event to the workspace webhook. Middleware‑exempt. Loads session + submission and attempts delivery.



## OpenAPI

````yaml api-reference/openapi.json post /v1/kyc/submissions/notify
openapi: 3.1.0
info:
  title: VerisecID KYC API
  description: Hosted KYC sessions to verify users via a secure, managed flow.
  version: 1.0.0
servers:
  - url: https://api.verisecid.com
security:
  - bearerAuth: []
tags:
  - name: Hosted sessions
    description: Create and manage hosted verification sessions
  - name: Direct verification
    description: Run verification with provided images using a secret key
  - name: Webhooks
    description: Receive verification events and test deliveries
paths:
  /v1/kyc/submissions/notify:
    post:
      tags:
        - Webhooks
      summary: Notify webhook delivery (internal)
      description: >-
        Internal fanout to deliver a submission event to the workspace webhook.
        Middleware‑exempt. Loads session + submission and attempts delivery.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                sessionId:
                  type: string
              required:
                - sessionId
      responses:
        '200':
          description: Fanout attempted
          content:
            application/json:
              schema:
                type: object
                properties:
                  ok:
                    type: boolean
                  delivered:
                    type:
                      - boolean
                      - 'null'
                  status:
                    type:
                      - integer
                      - 'null'
                required:
                  - ok
      deprecated: true
      security: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````