Skip to main content
DELETE
/
v2
/
endpoint
/
{endpoint_id}
Delete Webhook Endpoint
curl --request DELETE \
  --url https://api.jogg.ai/v2/endpoint/{endpoint_id} \
  --header 'x-api-key: <api-key>'
{
  "code": 0,
  "msg": "Success",
  "data": {
    "message": "webhook deleted"
  }
}
Remove a webhook endpoint from your account. This action cannot be undone and the endpoint will stop receiving events immediately.

Use Cases

  • Remove webhooks that are no longer needed
  • Clean up inactive endpoints
  • Stop event notifications

Important Notes

Deleting a webhook endpoint cannot be reversed. All associated event subscriptions will be removed.
If you only need to temporarily stop receiving events, we recommend using Update Webhook Endpoint to set the status to disabled instead of deleting the endpoint.

Authorizations

x-api-key
string
header
required

API key for authentication. Obtain your key from the JoggAI dashboard.

Path Parameters

endpoint_id
string
required

Unique webhook endpoint identifier

Example:

"wh_123456"

Response

200 - application/json

Success

code
integer
required

Business status code:

  • 0 - Success
  • 10104 - Record not found
  • 10105 - Invalid API key
  • 18020 - Insufficient credit
  • 18025 - No permission to call APIs
  • 40000 - Parameter error
  • 50000 - System error
Example:

0

msg
string
required

Response message

Example:

"Success"

data
object