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

# Delete Deploy Webhook

> Deletes an existing deploy webhook for an application.

<ParamField path="app_id" type="string" required>
  The ID of the application from which to delete the webhook.
</ParamField>

### Response

<ResponseExample>
  ```json theme={null}
  {}
  ```
</ResponseExample>

### Error Responses

<ResponseField name="code" type="string">
  Possible error codes:

  * `UNAUTHORIZED`: User is not authenticated or lacks permissions.
  * `PLAN_RESTRICTED_FEATURE`: User plan does not support auto-deploy.
  * `MISSING_APP_ID`: App ID was not provided.
  * `APP_NOT_FOUND`: Application webhook integration not found.
  * `INSTALLATION_NOT_FOUND`: GitHub installation not found for the user.
</ResponseField>

<ResponseField name="message" type="string">
  A descriptive message providing additional details about the error.
</ResponseField>

<ResponseExample>
  ```json theme={null}
  {
    "code": "APP_NOT_FOUND"
  }
  ```
</ResponseExample>
