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

# Post zapiersubscribe



## OpenAPI

````yaml https://app.boothzen.com/api/v1/openapi.json post /zapier/subscribe
openapi: 3.1.0
info:
  title: BoothZen API v1
  version: '1.0'
  description: >-
    Public REST API v1 for BoothZen booking management. Authenticate with
    `Authorization: Bearer bz_live_…` or `bz_test_…` keys.
servers:
  - url: https://api.boothzen.com/v1
    description: Production
security:
  - bearerAuth: []
paths:
  /zapier/subscribe:
    post:
      tags:
        - ZapierSubscribe
      operationId: zapierSubscribe.store
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                target_url:
                  type: string
                  format: uri
                  maxLength: 2048
                event:
                  type: string
              required:
                - target_url
                - event
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: object
                    properties:
                      id:
                        type: string
                      target_url:
                        type: string
                      event:
                        type: string
                      created_at:
                        type: string
                    required:
                      - id
                      - target_url
                      - event
                      - created_at
                required:
                  - data
        '201':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: object
                    properties:
                      id:
                        type: string
                      target_url:
                        type: string
                      event:
                        type: string
                      created_at:
                        type: string
                    required:
                      - id
                      - target_url
                      - event
                      - created_at
                required:
                  - data
        '401':
          description: An error
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                    description: Error overview.
                    example: Missing API key context.
                required:
                  - message
        '422':
          $ref: '#/components/responses/ValidationException'
      security:
        - bearerAuth: []
components:
  responses:
    ValidationException:
      description: Validation error
      content:
        application/json:
          schema:
            type: object
            properties:
              message:
                type: string
                description: Errors overview.
              errors:
                type: object
                description: A detailed description of each field that failed validation.
                additionalProperties:
                  type: array
                  items:
                    type: string
            required:
              - message
              - errors
  securitySchemes:
    bearerAuth:
      type: http
      description: >-
        Bearer token: `bz_live_<32chars>` (live mode) or `bz_test_<32chars>`
        (test mode). Obtain via BoothZen admin → Settings → API Keys.
      scheme: bearer
      bearerFormat: BZ-API-Key

````