Skip to main content

Overview

Pre-built tooling

ToolsStatus
Pre-built authorization (OAuth)
Credentials auto-refresh
Pre-built authorization UI
Custom authorization UI
Expired credentials detection
ToolsStatus
Pre-built integrations
API unification
2-way sync
Webhooks from Nango on data modifications
Real-time webhooks from 3rd-party API
Proxy requests
ToolsStatus
HTTP request logging
End-to-type type safety
Data runtime validation
OpenTelemetry export
Slack alerts on errors
Integration status API
ToolsStatus
Create or customize use-cases
Pre-configured pagination🚫 (time to contribute: <48h)
Pre-configured rate-limit handling
Per-customer configurations

Pre-built integrations

EndpointDescriptionReadme
GET /background-check/service-listFetch the possible services that Checkr offers for a background check🔗
GET /background-check/service-parametersFetch the parameters required to trigger a background check🔗
POST /background-check/triggerTrigger a background check🔗
POST /candidatesCreate a candidate🔗
GET /background-checksFetch all the background checks🔗
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
I