Skip to content

Getting Started

trackrobert edited this page Jul 30, 2021 · 1 revision

Welcome to the abound-node wiki!

Below is a code snippet to create a tax payment.

const abound = require('abound');

abound.config({ appId: process.env.ABND_APP_ID });

abound.createTaxPayment({
    amount: 2340.23,
    period: 'Q3',
    year: '2021',
    entity: 'IRS',
    paymentMethodId: 'paymentMethodId_ZNSZZS...'
});

Clone this wiki locally