Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
cURL
curl --request DELETE \ --url https://api.omnixapi.com/api/v1/twitter/webhooks/{webhook_id} \ --header 'Authorization: Bearer <token>'
const options = {method: 'DELETE', headers: {Authorization: 'Bearer <token>'}}; fetch('https://api.omnixapi.com/api/v1/twitter/webhooks/{webhook_id}', options) .then(res => res.json()) .then(res => console.log(res)) .catch(err => console.error(err));
import requests url = "https://api.omnixapi.com/api/v1/twitter/webhooks/{webhook_id}" headers = {"Authorization": "Bearer <token>"} response = requests.delete(url, headers=headers) print(response.text)
{ "status": true, "data": { "deleted": true }, "error": null }
{ "status": false, "data": null, "error": "Tweet not found: 1899999999999999999" }
Delete a webhook. Its watcher stops and no further events are delivered.
Your OmniX API key, e.g. omnix_live_.... Billed per call.
omnix_live_...
Deleted.
true
Show child attributes
null