Checkr Partner

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

Features

We can implement missing features in <48h, just ask for it in the community.

Getting started

Need assistance getting started? Visit our community for help.

API gotchas

  • Partners are provided with both staging and production accounts for testing and live environments. For more information, refer to staging vs production accounts.

  • The access_token issued is long-lived and remains valid until revoked, so there is no need for frequent refreshes.

  • Checkr requires partners to undergo an integration review to ensure the connection is ready for production. See more details about the production approval process.

  • After establishing a connection, Checkr mandates that you send the access_token using Basic Authentication like this:

        const connection = await terapi.getConnection();
        let access_token: string;
        if ('access_token' in connection.credentials)  else );
        }
        const config = 
        }

        const response = await terapi.get(config);

Add Connection configuration in Terapi by editing this page.

Last updated