@aicpa-ads/auditdata-client
TypeScript icon, indicating that this package has built-in type declarations

0.0.8-preview004 • Public • Published

@aicpa-ads/auditdata-client@0.0.8-preview004

The purpose of the Audit Data API Working Group (Working Group) is to define an API standard for the transfer of financial audit data between two systems. The standard is open and licensed under an MIT license. Participation in the Working Group and contributions are open to all interested parties. The API standard intends to build upon the standards already developed by the AICPA and to use the terms defined in that standard where applicable..

Installing

Navigate to the folder of your consuming project and run one the following command.

npm install @aicpa-ads/auditdata-client@0.0.8-preview004 --save

Usage

API client classes need to be provided with access credentials to the backend service. Obtaining service-specific credentials is outside of the scope of this library. At this point, this API client has been tested with backends supporting Bearer authentication.

Use the following snippet to get started:

const { BaseModuleApi, GeneralLedgerModuleApi, 
        createConfiguration, ServerConfiguration, 
        ImplicitAuthAuthentication } = require("@aicpa-ads/auditdata-client")

let apiConfig = createConfiguration({
        baseServer:  new ServerConfiguration(process.env.AuditDataApiUrl 
                        || "https://localhost:5001/AuditDataOpenAPI/v1.0"),
        authMethods: {
            "bearerAuth": new ImplicitAuthAuthentication("<access token>")
        }
    })

let baseApi = new BaseModuleApi(apiConfig);
let glApi = new GeneralLedgerModuleApi(apiConfig);

let entities = await baseApi.getEntities();
let accts = await glApi.getChartAccounts(entities[0].entityIdentifier);

Package Sidebar

Install

npm i @aicpa-ads/auditdata-client

Weekly Downloads

2

Version

0.0.8-preview004

License

MIT

Unpacked Size

112 kB

Total Files

38

Last publish

Collaborators

  • aicpa-ads-admin