NodeJS Library for interacting with the BSD Tools.
$ npm install @ewarren/bsd-node
Convert a two-letter code to the name of a state
const bsd = require('@ewarren/bsd-node');
const bsdClient = bsd('client.bsd.net', 'your_app_id', 'your_app_secret');
const response = await client.get('/page/api/signup/list_form_fields', {
'signup_form_id': '123',
});
console.log(response.statusCode);
console.log(response.data.api.signup_form_field);
Coming soon...