automation-test-ts
v1.0.0
Published
Simple calculator API hosted on APIMATIC
Downloads
2
Readme
Getting Started with APIMATIC Calculator
Introduction
Simple calculator API hosted on APIMATIC
Install the Package
Run the following command from your project directory to install the package from npm:
npm install [email protected]
Initialize the API Client
Note: Documentation for the client can be found here.
The following parameters are configurable for the API Client:
| Parameter | Type | Description |
| --- | --- | --- |
| environment
| Environment | The API environment. Default: Environment.Production
|
| timeout
| number
| Timeout for API calls.Default: 0
|
The API client can be initialized as follows:
const client = new Client({
timeout: 0,
environment: Environment.Production
})