Snippets

Monil Gandhi Delete Webhooks

Created by Monil Gandhi
const util = require('util');
var Braango = require('braango');
var defaultClient = Braango.ApiClient.instance;
/**
 *
 * @author braango
 *        
 *         Sample code showing how to delete all webhooks
 *        
 *        
 *        
 */

//TEST auth token. Please contact
//sales@braango.com to have one
//created for you
var auth_token = defaultClient.authentications['auth_token'];
auth_token.apiKey = 'ISNWF0P30WM0CMK';

var apiInstance = new Braango.WebhooksApi();

//string | id of _sub_dealer_
var subdealerid = "subdealers2002"; 

//string | id of _personnel_
var salespersonid = "aed72631-c968-4362-a9a4-ebe5bef8310b";

//String | API Key to access this dealer's resources. 
//Value was returned when create_account api was 
//called and dealer was created first time
var apiKey = "ISNMdzuNiKG7jhl9d9v"; 

//String | Dealer or partner is accessing this API
var accountType = "partner"; 

apiInstance.deleteWebhook(subdealerid, salespersonid, apiKey, accountType).then(function() {
	console.log('API called successfully.');
}, function(error) {
	console.error(error);
});

Comments (0)

HTTPS SSH

You can clone a snippet to your computer for local editing. Learn more.