Node.js / Bond APIs / delete webhook
Back to Collection Items
var os = require('os');
if (os.platform() == 'win32') {
if (os.arch() == 'ia32') {
var chilkat = require('@chilkat/ck-node21-win-ia32');
} else {
var chilkat = require('@chilkat/ck-node21-win64');
}
} else if (os.platform() == 'linux') {
if (os.arch() == 'arm') {
var chilkat = require('@chilkat/ck-node21-arm');
} else if (os.arch() == 'x86') {
var chilkat = require('@chilkat/ck-node21-linux32');
} else {
var chilkat = require('@chilkat/ck-node21-linux64');
}
} else if (os.platform() == 'darwin') {
if (os.arch() == 'arm64') {
var chilkat = require('@chilkat/ck-node21-mac-m1');
} else {
var chilkat = require('@chilkat/ck-node21-macosx');
}
}
function chilkatExample() {
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
var http = new chilkat.Http();
var success;
http.SetRequestHeader("Identity","{{identity}}");
http.SetRequestHeader("Authorization","{{authorization}}");
// resp: HttpResponse
var resp = http.QuickRequest("DELETE","https://{{environment}}.bond.tech/api/v0/webhooks/:webhook_id");
if (http.LastMethodSuccess == false) {
console.log(http.LastErrorText);
return;
}
console.log(resp.StatusCode);
console.log(resp.BodyStr);
}
chilkatExample();
Curl Command
curl -X DELETE
-H "Identity: {{identity}}"
-H "Authorization: {{authorization}}"
https://{{environment}}.bond.tech/api/v0/webhooks/:webhook_id
Postman Collection Item JSON
{
"name": "delete webhook",
"request": {
"method": "DELETE",
"header": [
{
"key": "Identity",
"value": "{{identity}}",
"type": "text"
},
{
"key": "Authorization",
"value": "{{authorization}}",
"type": "text"
}
],
"url": {
"raw": "https://{{environment}}.bond.tech/api/v0/webhooks/:webhook_id",
"protocol": "https",
"host": [
"{{environment}}",
"bond",
"tech"
],
"path": [
"api",
"v0",
"webhooks",
":webhook_id"
],
"variable": [
{
"key": "webhook_id",
"value": "{{webhook_id}}"
}
]
}
},
"response": [
{
"name": "delete webhook",
"originalRequest": {
"method": "DELETE",
"header": [
{
"key": "Identity",
"value": "{{identity}}",
"type": "text"
},
{
"key": "Authorization",
"value": "{{authorization}}",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "https://{{environment}}.bond.tech/api/v0/webhooks/:webhook_id",
"protocol": "https",
"host": [
"{{environment}}",
"bond",
"tech"
],
"path": [
"api",
"v0",
"webhooks",
":webhook_id"
],
"variable": [
{
"key": "webhook_id",
"value": ""
}
]
}
},
"_postman_previewlanguage": "json",
"header": null,
"cookie": [
],
"body": "{\n \"deleted_at\": \"2020-11-17T12:39:24.546147\",\n \"date_created\": \"2020-11-17T12:39:12.846994\",\n \"webhook_id\": \"d2413481-6564-4977-a1cc-aefcba5f89b6\",\n \"callback_url\": \"https://hostname.com/webhook/route\",\n \"description\": \"KYC state changes.\",\n \"events\": [\n \"kyc.verification.success\",\n \"kyc.verification.failure\",\n \"kyc.verification.kba\",\n \"kyc.verification.error\",\n \"kyc.verification.timeout\"\n ],\n \"status\": \"disabled\",\n \"secret\": \"whsec_fmLMp39V+u4q8mQsizj+LTELLO5j5m0z\"\n}"
}
]
}