Overview

Pre-built tooling

Pre-built integrations

Not seeing the integration you need? Build your own independently.

Access requirements

Pre-RequisitesStatusComment
Paid dev account
Paid test account
Partnership
App review
Security audit

Setup guide

No setup guide yet.

Need help getting started? Get help in the community.
Contribute improvements to the setup guide by editing this page
Contribute useful links by editing this page

API gotchas

  • As a partner you are provided with both staging and a production account. For more details check staging vs production accounts
  • The access_token generated are long lived, until revoked and don’t need to be refreshed.
  • Checkr requires partners to comply with a quick integration review so as to make the integration production ready. For more details check production approval process
  • After creating a connection, Checkr requires you to pass the access_token as Basic Authentication as follows:
        const connection = await nango.getConnection();
        let access_token: string;
        if ('access_token' in connection.credentials) {
            access_token = connection.credentials.access_token;
        } else {
            throw new nango.ActionError({
                message: `access_token is missing`
            });
        }
        const config = {
            endpoint: '/v1/account',
            headers: {
                Authorization: 'Basic ' + Buffer.from(access_token + ':').toString('base64')
            }
        }

        const response = await nango.get(config);
Contribute API gotchas by editing this page