An SDK for the moov-io/ach REST API, generated by `openapi-generator`
npm install ach-node-sdkGenerated Typescript SDK for the moov-io/ach service.
Install in your Node.js or Typescript project using npm:
``bash`
npm install ach-node-sdk
Using require sytax:`js`
const { ACHFilesApi, Configuration } = require('ach-node-sdk');
Using import syntax:`js`
import { ACHFilesApi, Configuration } from 'ach-node-sdk';
Build the client instance:
`js`
const configuration = new Configuration({ basePath: 'https://ach.mycompany.com' });
const achFilesApi = new ACHFilesApi(configuration);
Call functions on the client:
`js`
achFilesApi.getFiles().then(response => console.log(response.data));
=> Promise{
{ files: [], error: null };
See the generated documentation for more detail.
Run the following to build our library locally.
``
tsc --build tsconfig.json
Run the following for generating the TypeScript client.
``
make client
Run the following for generating the documentation.
```
make docs