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

# Restore a soft-deleted webhook



## OpenAPI

````yaml /openapi.json post /api/webhooks/{id}/restore
openapi: 3.0.0
info:
  title: Vambe AI API
  description: Vambe AI documentation
  version: '1.0'
  contact: {}
servers:
  - url: https://api.vambe.me
    description: Production Server
security: []
tags:
  - name: Vambe AI
    description: ''
paths:
  /api/webhooks/{id}/restore:
    post:
      tags:
        - webhooks
      summary: Restore a soft-deleted webhook
      operationId: WebhookController_restore
      parameters:
        - name: id
          required: true
          in: path
          schema:
            type: string
      responses:
        '200':
          description: Webhook restored successfully

````