Delete Webhook
DELETE https://api.echovalue.dev/webhook/<webhookId>
Removes a specific webhook from your wallet using its public webhookId.
Request
Section titled “Request”Headers:
| Header | Description |
|---|---|
x-token | Your API token |
Path parameters:
| Parameter | Type | Description | Required |
|---|---|---|---|
webhookId | string | Public webhook identifier to delete | Yes |
curl 'https://api.echovalue.dev/webhook/slack' \ -H 'x-token: mytoken' \ -X DELETEResponse
Section titled “Response”200 OK
OKResponse headers:
| Header | Description |
|---|---|
x-balance | Wallet balance after this call |
x-cost | Credits consumed |
See Response Headers for details.
Status Codes
Section titled “Status Codes”| Status | Meaning |
|---|---|
200 | Webhook deleted |
401 | Invalid token |
402 | Insufficient credits |
404 | Webhook not found |