@rantalainen/agileday-api-client
v1.0.1
Published
**AgiledayApiClient** is a third party [agileday API](https://api.agileday.io/) client for NodeJS. It is a wrapper around an API client that has been [automatically generated](https://www.npmjs.com/package/swagger-typescript-api) using the [OpenAPI schema
Maintainers
Keywords
Readme
agileday-api-client
AgiledayApiClient is a third party agileday API client for NodeJS. It is a wrapper around an API client that has been automatically generated using the OpenAPI schema provided by agileday.
Installation
Add to project's package.json:
npm install @rantalainen/agileday-api-clientImport
import { AgiledayApiClient } from '@rantalainen/agileday-api-client';Setup client with options
In order to obtain an API key, please contact agileday Support. An API key is needed to access all API functions.
const agiledayClient = new AgiledayApiClient(
{
bearerToken: 'token'
},
{
baseURL: 'https://demo.agileday.io/api'
}
);Available methods can be found in the API documentation.
Resources
- Agileday: https://agileday.com/
- Agileday Developer Guide: https://api.agileday.io/
