bitly-node-api
Version:
bitly api wrapper
28 lines (21 loc) • 470 B
text/typescript
var userToken = process.env.BITLY_USER_TOKEN;
import * as BitlyAPI from 'bitly-node-api';
const bitly = new BitlyAPI();
bitly.setUserToken(userToken);
var userRequest = async function () {
/**
*
* passing path parameters
* -------------------
* webhook_guid {string}
*
*/
var webhook_guid = 'string';
try {
var response = await bitly.webhooks.delete(webhook_guid);
} catch (error) {
return;
}
};
userRequest();
;