DELETE
/
v1
/
apps
/
{app_id}
/
deploys
/
webhook
Delete Deploy Webhook
curl --request DELETE \
  --url https://api.vertracloud.app/v1/apps/{app_id}/deploys/webhook \
  --header 'Authorization: Bearer <token>'
{
  "status": "success"
}
app_id
string
required
The ID of the application from which to delete the webhook.

Response

status
string
Indicates if the webhook was successfully deleted. Returns success if deleted.
{
  "status": "success"
}

Error Responses

status
string
Returns error if the request fails.
code
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.
{
  "status": "error",
  "code": "APP_NOT_FOUND"
}