1. Webhooks
BeatAPI
  • Quick Start
  • BeatAPI Realtime Video API
  • Music Video API
    • Create Video
      • Create Music Video
    • Advanced Editing
      • Edit Shot
      • Get Shot Media
      • Compose Video
  • Ecommerce Video API
    • Create Ecommerce Video
  • Reference
    • API Overview
      • List launch workflows
    • Task Status
      • Poll task status
    • Usage & Limits
      • Get account usage and concurrency
    • Upload Files
      • Upload a file for workflow inputs
    • Webhooks
      • List webhook endpoints
        GET
      • Create a webhook endpoint
        POST
      • Get a webhook endpoint
        GET
      • Update a webhook endpoint
        PATCH
      • Delete a webhook endpoint
        DELETE
  • Realtime Video API
    • Create a realtime browser session
    • Get a realtime session
    • Close a realtime session
  1. Webhooks

Delete a webhook endpoint

DELETE
/v1/webhooks/{id}

Request

Authorization
Bearer Token
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
or
Path Params

Responses

🟢200
application/json
Webhook endpoint deleted
Bodyapplication/json

🟠401Unauthorized
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request DELETE 'https://api.beatapi.io/v1/webhooks/wh_9aBcD' \
--header 'Authorization: Bearer <token>'
Response Response Example
200 - 成功示例
{
    "data": {
        "id": "wh_9aBcD",
        "deleted": true
    }
}
Modified at 2026-07-31 15:10:04
Previous
Update a webhook endpoint
Next
Create a realtime browser session
Built with