@ownage-fdt/approvedeny
v1.0.1
Published
A Node.js SDK for the Approvedeny API
Downloads
1
Readme
ApproveDeny SDK for Node.js
The ApproveDeny SDK for Node.js provides an easy way to interact with the ApproveDeny API using Node.js.
Installation
Requires Node.js 16+
You can install the package via npm:
npm install @ownage-fdt/approvedeny
Usage
To use the SDK, you need to create an instance of the Client class. You can do this by passing your API key to the constructor.
import { Client } from '@ownage-fdt/approvedeny'
const client = new Client('your-api-key');
Creating a new check request
To create a new check request, you need to call the createCheckRequest
method on the client instance.
const checkRequest = await client.createCheckRequest('check-id', {
description: 'A description of the check request',
metadata: {
key: 'value',
},
});
Retrieving a check request
To retrieve a check request, you need to call the getCheckRequest
method on the client instance.
const checkRequest = await client.getCheckRequest('check-request-id');
Retrieving a check request response
To retrieve a check request response, you need to call the getCheckRequestResponse
method on the client instance.
const checkRequestResponse = await client.getCheckRequestResponse('check-request-id');
Verifying webhook signatures
To verify webhook signatures, you need to call the isValidWebhookSignature
method on the client instance. This method returns a boolean value indicating whether the signature is valid or not.
const isValidSignature = client.isValidWebhookSignature('your-encryption-key', 'signature', { foo: 'bar' });
if (isValidSignature) {
// The signature is valid
} else {
// The signature is invalid
}
Testing
npm run test
Changelog
Please see CHANGELOG for more information what has changed recently.
Contributing
Please see CONTRIBUTING for details.
Security
If you discover any security related issues, please use the issue tracker.
Credits
License
The MIT License (MIT). Please see License File for more information.