Delete a webhook by its ID
DELETE/webhook/:webhookId
Delete a webhook by its ID
Request
Path Parameters
webhookId stringrequired
The unique ID of the webhook to delete.
Responses
- 204
- 401
- 403
- 404
- 500
Resource deleted successfully
- application/json
- Schema
- Example
Schema
string
{
"error": "Resource deleted successfully"
}
Unauthorized
- application/json
- Schema
- Example (from schema)
- Example
Schema
error string
{
"error": "string"
}
{
"error": "Unauthorized access"
}
Forbidden
- application/json
- Schema
- Example (from schema)
- Example
Schema
error string
{
"error": "string"
}
{
"error": "Forbidden access"
}
NotFound
- application/json
- Schema
- Example (from schema)
- Example
Schema
error string
{
"error": "string"
}
{
"error": "A mandatory item was not found"
}
Internal Server Error
- application/json
- Schema
- Example (from schema)
- Example
Schema
error string
{
"error": "string"
}
{
"error": "Internal Server Error"
}
Loading...