Skip to main content
POST
/
api
/
webhooks
/
{id}
/
restore
Restore a soft-deleted webhook
curl --request POST \
  --url https://api.vambe.me/api/webhooks/{id}/restore
const options = {method: 'POST'};

fetch('https://api.vambe.me/api/webhooks/{id}/restore', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
import requests

url = "https://api.vambe.me/api/webhooks/{id}/restore"

response = requests.post(url)

print(response.text)

Path Parameters

id
string
required

Response

200

Webhook restored successfully