Skip to content
This repository was archived by the owner on Dec 21, 2022. It is now read-only.

Latest commit

 

History

History
47 lines (29 loc) · 1.34 KB

README.md

File metadata and controls

47 lines (29 loc) · 1.34 KB

DEPRECATED

op-api-javascript-sdk

Build Status

Description

Simple universal SDK for easy consumption of OP APIs.

Installation

npm install @op/api-sdk

Usage

import SDK from "@op/api-sdk";

const options = {
    headers: {
        'x-api-key': 'your-api-key',
    }
}

const client = new SDK.Client(options)

See requests for required headers.

You can set request options for client instance, and also for each request function call, which is useful because you can then use global instance of SDK client, with globally defined x-api-key, but still give separate x-authorization header for each user:

const userOptions = {
    headers: {
        'x-authorization': userSession.getAuthorizationKey({bank: "OP"})
    }
}

const accounts = await client.getAllAccounts(userOptions);

For further reading, please see our API documentation

Developing

Running tests