Skip to content

aronkerr/Checkr

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Checkr

Introduction

This module provides a simple wrapper for the Checkr service.

Installation

Install the module using Composer into your application's vendor directory. Add the following line to your composer.json.

{
    "require": {
        "aronkerr/checkr": "dev-master"
    }
}

Configuration

None at this point

Basic Usage

You can get the Checkr class from anywhere anywhere in your application (e.g. controller classes). The following example instantiates the Checkr class.

use AronKerr\Checkr\Checkr;

public function indexAction()
{
    $checkr = new Checkr('xxxxxxx'); // Replace with your API key
}

Create Candidate

use AronKerr\Checkr\Checkr;

public function indexAction()
{
    $checkr = new Checkr('xxxxxxx'); // Replace with your API key
    $parameters = new Parameters(array(
        'first_name' => 'Bob',
        'last_name' => 'Jones',
        'email' => 'bob@gmail.com',
        'phone' => '123-456-7890',
        'zipcode' => '97222',
        'copy_requested' => 'false',
        'dob' => '1986-12-08'
    ));
    $response = $checkr->createCandidate($parameters);
}

Links

About

ZF2 OOP wrapper for the Checkr web service

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages