API configurations: checkr-partner, checkr-partner-staging

Features

FeaturesStatus
Auth (OAuth)
Sync data
Perform workflows
Proxy requests
Receive webhooks
We can implement missing features in <48h, just ask for it in the community.

Getting started

Need help getting started? Get help in the community.

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);
Add Getting Started links and Gotchas by editing this page