https://github.com/inloco/incognia-node
Node library for Incognia API
https://github.com/inloco/incognia-node
Last synced: about 2 months ago
JSON representation
Node library for Incognia API
- Host: GitHub
- URL: https://github.com/inloco/incognia-node
- Owner: inloco
- License: mit
- Created: 2021-03-10T13:58:20.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2025-09-02T14:38:09.000Z (10 months ago)
- Last Synced: 2025-09-02T16:26:12.574Z (10 months ago)
- Language: TypeScript
- Homepage:
- Size: 957 KB
- Stars: 5
- Watchers: 19
- Forks: 1
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# Incognia Node Library
The official Node.js library for integrating with the Incognia API.
Documentation can be found at
## Installation
npm:
```sh
npm install @incognia/api
```
yarn:
```sh
yarn add @incognia/api
```
## Getting started
Require the package:
CommonJS modules:
```js
const { IncogniaApi } = require('@incognia/api')
```
Or ES modules:
```js
import { IncogniaApi } from '@incognia/api'
```
Initialize the `IncogniaApi` with your `clientId` and `clientSecret`. This is a required step and must be done before calling any of the API methods.
```js
IncogniaApi.init({
clientId: 'clientId',
clientSecret: 'clientSecret'
})
```
### Incognia API Options (`options`)
You can optionally configure HTTP behavior when initializing the SDK via the `options` parameter. These options affect all requests made by the library after initialization.
```js
IncogniaApi.init({
clientId: 'clientId',
clientSecret: 'clientSecret',
options: {
// Reuse TCP connections for better performance in high-throughput environments (Default: false)
keepAlive: true,
// Number of times to retry a failed request before throwing (Default: 0)
maxRetries: 3,
// Delay in milliseconds between retries (Default: 200)
retryDelayMs: 500
}
})
```
- **keepAlive**: boolean. Default: `false`.
- When `true`, the library sets Node's `https.Agent` with `keepAlive: true` on the internal Axios instance, enabling connection reuse.
- **maxRetries**: number. Default: `0`.
- Maximum number of retry attempts for failed requests. Retries are only performed on transient errors such as network failures or server errors (5xx responses). Client errors (4xx, e.g., invalid credentials) are not retried.
- **retryDelayMs**: number. Default: `200`.
- The delay in milliseconds between each retry attempt. Useful for preventing overwhelming the API when multiple retries are configured.
## API methods
### Registering a Mobile Signup
This method registers a new mobile signup for the given request token and address, returning a signup assessment, containing the risk assessment and supporting evidence:
```js
try {
const signup = await IncogniaApi.registerSignup({
requestToken: 'request_token',
policyId: 'policy_id',
structuredAddress: {
locale: 'en-US',
countryName: 'United States of America',
countryCode: 'US',
state: 'NY',
city: 'New York City',
borough: 'Manhattan',
neighborhood: 'Midtown',
street: 'W 34th St.',
number: '20',
complements: 'Floor 2',
postalCode: '10001',
county: 'New York County'
}
})
} catch (error) {
console.log(error.message)
}
```
### Registering a Web Signup
This method registers a new web signup for the given request token, returning a signup assessment, containing the risk assessment and supporting evidence:
```js
try {
const signup = await IncogniaApi.registerWebSignup({
requestToken: 'request_token',
policyId: 'policy_id'
})
} catch (error) {
console.log(error.message)
}
```
### Registering a Mobile Login
This method registers a new mobile login for the given request token and account, returning a transaction assessment, containing the risk assessment and supporting evidence.
```js
try {
const login = await IncogniaApi.registerLogin({
requestToken: 'request_token',
accountId: 'account_id',
policyId: 'policy_id',
externalId: 'external_id' // optional field
})
} catch (error) {
console.log(error.message)
}
```
### Registering a Web Login
This method registers a new web login for the given request token and account, returning a transaction assessment, containing the risk assessment and supporting evidence.
```js
try {
const login = await IncogniaApi.registerWebLogin({
requestToken: 'request_token',
accountId: 'account_id',
policyId: 'policy_id'
})
} catch (error) {
console.log(error.message)
}
```
### Registering a Payment
This method registers a new payment for the given request token and account, returning a transaction assessment, containing the risk assessment and supporting evidence.
```js
try {
const payment = await IncogniaApi.registerPayment({
requestToken: 'request_token',
accountId: 'account_id',
policyId: 'policy_id',
addresses: [
{
structuredAddress: {
locale: 'en-US',
countryName: 'United States of America',
countryCode: 'US',
state: 'NY',
city: 'New York City',
borough: 'Manhattan',
neighborhood: 'Midtown',
street: 'W 34th St.',
number: '20',
complements: 'Floor 2',
postalCode: '10001',
county: 'New York County'
},
addressCoordinates: {
lat: 40.74836007062138,
lng: -73.98509720487937
},
type: 'shipping'
}
]
})
} catch (error) {
console.log(error.message)
}
```
### Registering a Web Payment
This method registers a new web payment for the given request token and account, returning a transaction assessment, containing the risk assessment and supporting evidence.
```js
try {
const payment = await IncogniaApi.registerWebPayment({
requestToken: 'request_token',
accountId: 'account_id',
policyId: 'policy_id'
})
} catch (error) {
console.log(error.message)
}
```
### Sending Feedback
This method registers a feedback event for the given identifiers related to a signup, login or payment.
```js
try {
IncogniaApi.registerFeedback({
installationId: 'installation_id',
accountId: 'account_id',
event: FeedbackEvent.AccountTakeover,
occurredAt: '2024-07-22T15:20:00Z'
})
} catch (error) {
console.log(error.message)
}
```
## Typescript enabled
Thanks to Typescript, all methods attributes and data response are typed, meaning any typescript-enabled editor can take advantage of intellisense and auto-complete:

## Response format
Responses have JSONs identical to the original api , **however** property names will be in camelCase rather than snake_case, including property names in nested objects.
```json
{
"id": "5e76a7ca-577c-4f47-a752-9e1e0cee9e49",
"riskAssessment": "low_risk",
"evidence": {
"deviceModel": "Moto Z2 Play"
}
}
```
## Exception handling
Every method call can throw `IncogniaApiError` and `IncogniaError`.
`IncogniaApiError` is thrown when the API returned an unexpected http status code. You can retrieve it by calling the `statusCode` property, along with the `payload` property, which returns the API response payload that might include additional details.
`IncogniaError` represents unknown errors, like serialization/deserialization errors.
```js
const { IncogniaApi, IncogniaApiError } = require('@incognia/api')
try {
const loginAssessment = await IncogniaApi.registerLogin({
requestToken: 'request_token',
accountId: 'account_id'
})
} catch (error) {
if (error instanceof IncogniaApiError) {
console.log(error.statusCode)
console.log(error.payload)
}
}
```
## Migration to v6
The v6 changed the `IncogniaApi` interface, transforming the previous instance methods into static methods.
When migrating to v6, adjust the `IncogniaApi` usage as follows.
### Initialization
Instead of creating an instance of the `IncogniaApi` class using your API credentials, just initialize the `IncogniaApi` with your credentials using the `init()` method. Initializing the `IncogniaApi` is a required step and must be done before calling any of the other `IncogniaApi` methods.
```js
// Before
const incogniaApi = new IncogniaApi({
clientId: 'clientId',
clientSecret: 'clientSecret'
})
// After
IncogniaApi.init({
clientId: 'clientId',
clientSecret: 'clientSecret'
})
```
### Register methods
Every method of the `IncogniaApi` instance is now static, and should be called on the `IncogniaApi` class.
```js
// Before
const signup = await incogniaApi.registerSignup({...})
const login = await incogniaApi.registerLogin({...})
const payment = await incogniaApi.registerPayment({...})
incogniaApi.registerFeedback({...})
// After
const signup = await IncogniaApi.registerSignup({...})
const login = await IncogniaApi.registerLogin({...})
const payment = await IncogniaApi.registerPayment({...})
IncogniaApi.registerFeedback({...})
```
Furthermore, the `installationId` and `sessionToken` parameters were removed, and `requestToken` should be used instead. The `requestToken` field can receive the previous `installationId` and `sessionToken` values, as well as the new `requestToken` value from the Mobile and Web SDKs. Also, the `policyId` is now a required parameter and must be used on every assessment.
```js
// Before
const loginAssessment = await incogniaApi.registerLogin({
installationId: 'installation_id',
accountId: 'account_id'
})
const webPaymentAssessment = await incogniaApi.registerWebPayment({
sessionToken: 'session_token',
accountId: 'account_id'
})
// After
const loginAssessment = await IncogniaApi.registerLogin({
requestToken: 'installation_id',
accountId: 'account_id',
policyId: 'policy_id'
})
const webPaymentAssessment = await IncogniaApi.registerWebPayment({
requestToken: 'session_token',
accountId: 'account_id',
policyId: 'policy_id'
})
```
## More documentation
More documentation and code examples can be found at