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

# Update webhook URL

> This endpoint allows updating the client URL of an existing webhook.



## OpenAPI

````yaml /openapi.json patch /webhooks/update/{webhookId}
openapi: 3.0.4
info:
  title: Simplified Webhooks Backend
  version: '1.0'
  description: >-
    API for Airtable webhooks, usage (record & attachment-storage counting), and
    change-monitoring audit logs.
  contact:
    name: API Support
    url: https://www.simplified-webhooks.com/contact-us
    email: contact@simplified-webhooks.com
servers:
  - url: https://api.simplified-webhooks.com
    description: Main server
security: []
tags:
  - name: Webhooks
    description: Register, update, and delete delivery webhooks for Airtable changes.
  - name: Usage
    description: >-
      Track daily record counts and attachment storage per Airtable base, and
      read the snapshot time-series.
  - name: Audit Log
    description: >-
      Configure change monitoring that logs every record & schema change into a
      Changes table in your own Airtable base.
paths:
  /webhooks/update/{webhookId}:
    patch:
      tags:
        - Webhooks
      summary: Update webhook URL
      description: This endpoint allows updating the client URL of an existing webhook.
      operationId: updateWebhookUrl
      parameters:
        - name: webhookId
          in: path
          required: true
          description: The unique identifier of the webhook to be updated.
          schema:
            type: string
            format: uuid
            example: 20c775ff-666c-42d7-b4db-26e4af4e43c7
      requestBody:
        description: Webhook update details
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - webhookUrl
              properties:
                webhookUrl:
                  type: string
                  format: uri
                  description: The new URL to which the webhook notifications will be sent.
                  example: https://hook.eu2.make.com/your-new-hook-id
      responses:
        '200':
          description: Webhook URL updated successfully.
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                    example: Successfully updated webhook URL
                  webhookId:
                    type: string
                    format: uuid
                    example: 20c775ff-666c-42d7-b4db-26e4af4e43c7
                  webhookUrl:
                    type: string
                    format: uri
                    example: https://hook.eu2.make.com/your-new-hook-id
        '400':
          description: Bad request due to invalid input.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '401':
          description: Unauthorized, authentication token is missing or invalid.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '403':
          description: Forbidden, access is denied.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '404':
          description: Webhook not found.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
      security:
        - apiKey: []
components:
  schemas:
    ErrorResponse:
      type: object
      properties:
        message:
          type: string
          example: 'Missing required fields: [tableId, event]'
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: Authorization
      description: API key for authentication.

````