cURL
curl --request DELETE \ --url https://faisalshop.mvp-apps.ae/api/v2/admin/webhooks/{tenantId} \ --header 'Authorization: Bearer <token>'
curl -X DELETE \ https://faisalshop.mvp-apps.ae/api/v2/admin/webhooks/123 \ -H 'Authorization: Bearer YOUR_TOKEN'
await axios.delete( `/api/v2/admin/webhooks/${tenantId}`, { headers: { Authorization: `Bearer ${token}` } } );
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Tenant ID
Webhook deleted