# Unsubscribe form events

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /openapi/webhook/unsubscribe/:
    post:
      summary: Unsubscribe form events
      deprecated: false
      description: Unsubscribe form events
      operationId: webhook_unsubscribe_create
      tags:
        - Webhook
        - Webhook
      parameters: []
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/OpenAPIWebhookUnsubscribeRequest'
      responses:
        '200':
          description: No response body
          headers: {}
          x-apidog-name: OK
      security: []
      x-apidog-folder: Webhook
      x-apidog-status: released
      x-run-in-apidog: https://app.apidog.com/web/project/586350/apis/api-12551729-run
components:
  schemas:
    OpenAPIWebhookUnsubscribeRequest:
      type: object
      properties:
        url:
          type: string
          format: uri
          minLength: 1
      required:
        - url
      x-apidog-orders:
        - url
      x-apidog-ignore-properties: []
      x-apidog-folder: ''
  securitySchemes: {}
servers:
  - url: https://api.firsteld.com
    description: Prod Env
security: []

```
