Delete Webhook
DELETE/webhooks/:webhookId
Use this endpoint to delete any webhook that you no longer require.
Request
Path Parameters
webhookId stringrequired
The ID of the webhook.
Responses
- 200
- 401
- 404
If the request is valid, a successful response will be provided.
- application/json
- Schema
- Example (from schema)
Schema
success booleanrequired
{
"success": true
}
Unauthorized
- application/json
- Schema
- Example (from schema)
Schema
message stringrequired
Human readable error message.
code stringrequired
Machine readable error message.
more url
More help on the error here.
{
"message": "string",
"code": "string",
"more": "string"
}
Webhook not found
- application/json
- Schema
- Example (from schema)
Schema
message stringrequired
Human readable error message.
code stringrequired
Machine readable error message.
more url
More help on the error here.
{
"message": "string",
"code": "string",
"more": "string"
}
Loading...