Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...





Resource articles about Certn API application parameters, regional codes, error codes, and report field mappings.
"expires_in": 36000,import requests
from dotenv import dotenv_values
# An example of how to manage your Client ID and Client Secret, using a .env file
secrets = dotenv_values(".env")
client_id = secrets["CLIENT_ID"]
client_secret = secrets["CLIENT_SECRET"]
# add the
headers = {
"Content-Type": "application/x-www-form-urlencoded"
}
body = {"grant_type": "client_credentials"}
# url to retrieve your access token
url = "https://demo-api.certn.co/token/"
# Send the HTTP request to the API via POST,
# including your Client ID and Client Secret for authentication
response = requests.post(
url,
headers=headers,
auth=(client_id, client_secret),
data=body
)
# retrieve the access token
access_token = response.data.get("access_token")
{ 'Authorization': 'Bearer TOKEN' }signed_payload string
{
"email": "[email protected]",
"request_right_to_work": true
}"check_executions": [
{
"id": "check_exec_2kHNvQYTrTDgNL6aMeJybJ",
"check_name": "uk_basic_dbs_check",
"status": "WAITING_ON_CANDIDATE"
}
],
"result": "NONE",
"result_label": "None",
"report_status": "IN_PROGRESS",Certn-Signature:
t=1609459200,
v1=09efe4234a3cd00e44c20bcc00ef1b4f9d3f33ea87a7f04bc0d87fc0ef0f04e8,
v1=b36793a72f8bd71c8a165bd4b5aefb9fe9f5ac272ccbc8971c82c8c89cade770def verify_signature(signature: str, payload: str, secret: str) -> bool:
verify_sig = hmac.new(
key=secret.encode("utf-8"),
msg=payload.encode("utf-8"),
digestmod=hashlib.sha256
).hexdigest()
return hmac.compare_digest(verify_sig, signature){
"request_uk_basic_ds_check": true,
"request_enhanced_identity_verification": true,
"email": "[email protected]",
}{
"request_uk_right_to_work_check": true,
"request_enhanced_identity_verification": true,
"email": "[email protected]",
}






"results": [import requests
# Use your access token in the header.
headers = { "Authorization": f"Bearer {access_token}" }
# URL to retrieve a list of your users
url = "https://demo-api.certn.co/api/v1/users/"
# Send the HTTP request to the API via GET
response = requests.get(url, headers=headers)
############### Optional ###############
# Brings errors to the forefront
response.raise_for_status()
# Writes the contents of the response in a file named "user_list.json"
with open("user_list.json", "w") as f:
f.write(response.text)
############# End Optional #############applicant_url = f"https://demo-api.certn.co/api/v1/hr/applicants/{application_id}/"applicant_url = f"https://demo-api.certn.co/api/v1/pm/applicants/{application_id}/"{
"request_international_criminal_record_check": true,
"request_enhanced_identity_verification": true,
"email": "[email protected]",
"information": {
"first_name": "Sebastien",
"last_name": "Normandin",
},
"requested_countries": ["JP"]
}{ "Authorization": "Bearer {access_token}" }{
"request_uk_basic_dbs_check": true,
"request_enhanced_identity_verification": true,
"email": "[email protected]",
"employment_sector": "RETAIL",
"role_or_position_title": "Accounting manager",
}{
"request_soquij": true,
"email": "[email protected]",
"information": {
"first_name": "Andrew",
"last_name": "McLeod",
"date_of_birth": "1987-03-04",
},
"position_or_property_location": {
"location_type": "Gig Location"
}
}import requests
import json
############### Optional ###############
# Gets the application ID from the previous request
with open("softcheck_demo.json") as f:
softcheck_response = json.load(f)
application_id = softcheck_response.get('id')
############# End Optional ##############
# Use your access token in the header.
headers = { "Authorization": f"Bearer {access_token}" }
# URL to retrieve the applicant details, determined by your industry
url = applicant_url
# Send the HTTP request to the API via GET
result = requests.get(url, headers=headers)
############### Optional ###############
# Brings errors to the forefront
result.raise_for_status()
# Writes the contents of the report to a file
# named "results_softcheck_demo.json"
with open("results_softcheck_demo.json", "w") as f:
f.write(result.text)
############# End Optional ##############application_url = "https://demo-api.certn.co/api/v1/hr/applications/quick/"application_url = "https://demo-api.certn.co/api/v1/pm/applications/quick/"A list of API error codes and how to fix them.
{
"email": "[email protected]",
"request_address_references": true,
"request_address_phone_references": true,
"address_questionaire_id": "a123b4cd-1a23-1a23-12a3-a123456b7890",
}{
"request_employment_verification": true,
"email": "[email protected]"
}{
"request_credential_verification": true,
"email": "[email protected]",
"information": {
"first_name": "Sebastien",
"last_name": "Normandin",
"date_of_birth": "1970-06-28",
"addresses": [{
"address": "4412 King Alfred Court",
"city": "Victoria",
"province_state": "BC",
"country": "CA",
"current": true
}
],
"credentials": [{
"date_of_certification": "2020-08-21",
"description": "PMP proves project leadership experience and expertise.",
"certification": "Project Management Professional (PMP)",
"institution": "Project Management Institute",
"current": false
}
]
},
"position_or_property_location": {
"address": "Tiffany & Co., 97 Greene St",
"city": "New York City",
"county": "New York",
"province_state": "NY",
"country": "US",
"postal_code": "10012",
"location_type": "Position Location"
}
}import requests
# Use your access token in the header
headers = { "Authorization": f"Bearer {access_token}" }
# Use the appropriate application URL that corresponds to your industry
url = f"{application_url}"
body = {
"request_softcheck": true,
"information": {
"first_name": "Andrew",
"last_name": "McLeod",
"addresses": [{
"address": "1006 Fort St Unit 300",
"city": "Victoria",
"province_state": "BC",
"country": "CA",
"current": true
}
],
},
"owner_id": f"{your_user_id}",
"position_or_property_location": {
"address": "2680 Blanshard St Unit 3",
"city": "Victoria",
"province_state": "BC",
"country": "CA",
"postal_code": "V8T5E1",
"location_type": "Position Location"
}
}
# Send the HTTP request to the API via POST
response = requests.post(url, headers=headers, data=content)
############### Optional ###############
# Brings errors to the forefront
response.raise_for_status()
# Writes the contents of the response in a file named "softcheck_demo.json"
with open("softcheck_demo.json", "w") as f:
f.write(response.text)
############# End Optional ##############{
"request_softcheck": true,
"information": {
"first_name": "Andrew",
"last_name": "McLeod",
"addresses": [{
"address": "1006 Fort St Unit 300",
"city": "Victoria",
"province_state": "BC",
"country": "CA",
"current": true
}
],
},
"owner_id": f"{your_user_id}",
"position_or_property_location": {
"address": "2680 Blanshard St Unit 3",
"city": "Victoria",
"province_state": "BC",
"country": "CA",
"postal_code": "V8T5E1",
"location_type": "Position Location"
}
}{
"request_education_verification": true,
"education_verification_level": "HIGHEST",
"email": "[email protected]",
"information": {
"first_name": "Sebastien",
"last_name": "Normandin",
"date_of_birth": "1970-06-28",
"addresses": [{
"address": "4412 King Alfred Court",
"city": "Victoria",
"province_state": "BC",
"country": "CA",
"current": true
}
],
"educations": [{
"current": false,
"start_date": "2016-08-21",
"end_date": "2020-04-16",
"institution": "University of Victoria",
"degree": {
"degree": "BA"
},
"specializations": [{
"specialization": "History"
}
],
"address": {
"city": "Victoria",
"province_state": "BC",
"other_province_state": "",
"country": "CA"
},
"highest_level": true
}
]
},
"position_or_property_location": {
"address": "Tiffany & Co., 97 Greene St",
"city": "New York City",
"county": "New York",
"province_state": "NY",
"country": "US",
"postal_code": "10012",
"location_type": "Position Location"
}
}{
"request_softcheck": true,
"information": {
"first_name": "Andrew",
"last_name": "McLeod",
"addresses": [{
"address": "1006 Fort St Unit 300",
"city": "Victoria",
"province_state": "BC",
"country": "CA",
"current": true
}
],
},
"position_or_property_location": {
"address": "2680 Blanshard St Unit 3",
"city": "Victoria",
"province_state": "BC",
"country": "CA",
"postal_code": "V8T5E1",
"location_type": "Position Location"
}
}
{
"email": "[email protected]",
"request_employer_phone_references": true,
"employer_questionaire_id": "b123b4cd-1a23-1a23-12a3-a123456b7890",
"information": {
"first_name": "Andrew",
"last_name": "McLeod",
"addresses": [{
"address": "4412 King Alfred Court",
"city": "Victoria",
"province_state": "BC",
"country": "CA",
"current": true
}
],
"employer_references": [{
"company_name": "Bob's Mechanics",
"position": "Mechanic",
"start_date": "2010-01-01",
"end_date": "2020-12-23",
"first_name": "Bob",
"last_name": "Mechanic",
"reference_job_title": "Head Mechanic",
"relationship": "Supervisor",
"email": "[email protected]",
"phone_number": "12501234567"
}
]
},
"position_or_property_location": {
"address": "Tiffany & Co., 97 Greene St",
"city": "New York City",
"county": "New York",
"province_state": "NY",
"country": "US",
"postal_code": "10012",
"location_type": "Position Location"
}
}"city": ["Not a valid string."]"request_equifax": ["Account not configured to \"request_equifax\".
Please contact [email protected] to update your plan."]"non_field_errors": ["Cannot generate report for incomplete hr applicant."]
or
"non_field_errors": ["Cannot generate report for incomplete applicant."]"non_field_errors": [
"employer_references_max must be greater than employer_references_min."
]"detail": "Authentication credentials were not provided.""detail": "Invalid token.""detail": "You do not have permission to perform this action.""detail": "Invalid page.""detail": "Not Found."<HTML Page> NOT FOUND"detail": "Not Found."<HTML Page> NOT FOUND<HTML Page> Server Error (500)
{
"request_motor_vehicle_records": true,
"information": {
"first_name": "Andrew",
"last_name": "McLeod",
"date_of_birth": "1970-06-28",
"addresses": [{
"address": "4412 King Alfred Court",
"city": "Victoria",
"province_state": "BC",
"country": "CA",
"current": true
}
],
"license_number": "1234567",
"license_prov_state": "BC"
},
"position_or_property_location": {
"address": "Tiffany & Co., 97 Greene St",
"city": "New York City",
"county": "New York",
"province_state": "NY",
"country": "US",
"postal_code": "10012",
"location_type": "Position Location"
}
}
{
"request_equifax": true,
"information": {
"first_name": "Andrew",
"last_name": "McLeod",
"date_of_birth": "1970-06-28",
"addresses": [{
"address": "1006 Fort Street",
"city": "Victoria",
"province_state": "BC",
"country": "CA",
"postal_code": "V8V4F4",
"current": true
}
],
"sin_ssn": "1234567890"
},
"position_or_property_location": {
"address": "2680 Blanshard St Unit 3",
"city": "Victoria",
"province_state": "BC",
"country": "CA",
"postal_code": "V8T5E1",
"location_type": "Position Location"
}
}{
"request_equifax": true,
"information": {
"first_name": "Patricia",
"last_name": "Eerat",
"date_of_birth": "1970-06-28",
"addresses": [{
"address": "3601 West Belleview Avenue",
"city": "Littleton",
"county": "Arapahoe",
"province_state": "CO",
"country": "US",
"postal_code": "80123",
"current": true
}
],
"sin_ssn": "1234567890"
},
"position_or_property_location": {
"address": "71 Post",
"city": "Irvine",
"county": "Orange",
"province_state": "CA",
"country": "US",
"postal_code": "92618",
"location_type": "Position Location"
}
}{
"request_enhanced_criminal_record_check": true,
"request_enhanced_identity_verification": true,
"email": "[email protected]",
"information": {
"first_name": "Andrew",
"last_name": "McLeod",
"date_of_birth": "1987-03-04",
"birth_city": "Victoria",
"birth_province_state": "BC",
"birth_country": "CA",
"gender": "M",
"phone_number": "250-555-5555",
"addresses": [{
"address": "4412 King Alfred Court",
"city": "Victoria",
"province_state": "BC",
"country": "CA",
"current": true
}
],
"convictions": [{
"offense": "332",
"date_of_sentence": "2000-01-01",
"court_location": "Victoria, BC, Canada",
"description": "Robbery; Theft over $200"
}, {
"offense": "348",
"date_of_sentence": "2000-01-01",
"court_location": "Victoria, BC, Canada",
"description": "Break, enter, and theft"
}
],
"rcmp_consent_given": true
},
"enhanced_identity_verification": {
"id_country": "CA",
"id_type": "DRIVING_LICENSE",
"id_frontside_image": "<base64 encoded image>",
"id_backside_image": "<base64 encoded image>",
"face_image": "<base64 encoded image>"
},
"position_or_property_location": {
"address": "Tiffany & Co., 97 Greene St",
"city": "New York City",
"county": "New York",
"province_state": "NY",
"country": "US",
"postal_code": "10012",
"location_type": "Position Location"
}
}{
"request_us_criminal_record_check_tier_2": true,
"email": "[email protected]",
"information": {
"first_name": "Andrew",
"last_name": "McLeod",
"date_of_birth": "1987-03-04",
"addresses": [{
"address": "Freedom St.",
"city": "New York",
"province_state": "NY",
"country": "US",
"county":"Kings",
"current": true
}
],
"sin_ssn": "123456789",
"us_criminal_consent_given": true
},
"position_or_property_location": {
"address": "Tiffany & Co., 97 Greene St",
"city": "New York City",
"county": "New York",
"province_state": "NY",
"country": "US",
"postal_code": "10012",
"location_type": "Position Location"
}
}{
"request_enhanced_identity_verification": true,
"information": {
"first_name": "Andrew",
"last_name": "McLeod",
"addresses": [{
"address": "4412 King Alfred Court",
"city": "Victoria",
"province_state": "BC",
"country": "CA",,
"current": true
},
],
},
"enhanced_identity_verification": {
"id_country": "CA",
"id_type": "DRIVING_LICENSE",
"id_frontside_image": "<base64 encoded image>",
"id_backside_image": "<base64 encoded image>",
"face_image": "<base64 encoded image>"
},
"position_or_property_location": {
"address": "Tiffany & Co., 97 Greene St",
"city": "New York City",
"county": "New York",
"province_state": "NY",
"country": "US",
"postal_code": "10012",
"location_type": "Position Location"
}
}{
"request_social_media_check": true,
"email": "[email protected]",
"information": {
"first_name": "Andrew",
"last_name": "McLeod",
"date_of_birth": "1987-03-04",
"addresses": [
{
"address": "12 CA address St",
"city": "Burnaby",
"province_state": "BC",
"country": "CA",
"postal_code": "V2N7C3",
"start_date": "2000-02-02",
"current": true
}
],
"social_media_details": {
"high_school_name": "My high school",
"college_country": "Canada",
"college_name": "Test college",
"twitter_url": "https://twitter.com",
"facebook_url": "myFacebook",
"instagram_url": "instagram_handle",
"linkedin_url": "test_linkedin_link",
"tiktok_url": null,
"reddit_url": null
}
},
"position_or_property_location": {
"address": "2680 Blanshard St Unit 3",
"city": "Victoria",
"province_state": "BC",
"country": "CA",
"postal_code": "V8T5E1",
"location_type": "Position Location"
}
}{
"request_social_media_check": true,
"email": "[email protected]",
"information": {
"first_name": "Andrew",
"last_name": "McLeod",
"date_of_birth": "1987-03-04",
"addresses": [
{
"address": "3601 West Belleview Avenue",
"city": "Littleton",
"province_state": "CO",
"county": "Arapahoe",
"country": "US",
"postal_code": "80123",
"start_date": "2000-02-02",
"current": true
}
],
"social_media_details": {
"high_school_name": "My high school",
"college_country": "US",
"college_name": "Test college",
"twitter_url": "https://twitter.com",
"facebook_url": "myFacebook",
"instagram_url": "instagram_handle",
"linkedin_url": "test_linkedin_link",
"tiktok_url": null,
"reddit_url": null
}
},
"position_or_property_location": {
"address": "Tiffany & Co., 97 Greene St",
"city": "New York City",
"county": "New York",
"province_state": "NY",
"country": "US",
"postal_code": "10012",
"location_type": "Position Location"
}
}{
"request_social_media_check": true,
"email": "[email protected]",
"information": {
"first_name": "Andrew",
"last_name": "McLeod",
"date_of_birth": "1987-03-04",
"addresses": [
{
"address": "42 Wallaby Way",
"city": "Sydney",
"province_state": "NSW",
"country": "AU",
"postal_code": "2000",
"start_date": "2000-02-02",
"current": true
}
],
"social_media_details": {
"high_school_name": "My high school",
"college_country": "AU",
"college_name": "Test college",
"twitter_url": "https://twitter.com",
"facebook_url": "myFacebook",
"instagram_url": "instagram_handle",
"linkedin_url": "test_linkedin_link",
"tiktok_url": null,
"reddit_url": null
}
},
"position_or_property_location": {
"address": "600 George St",
"city": "Sydney",
"province_state": "NSW",
"country": "AU",
"postal_code": "2000",
"location_type": "Position Location"
}
}{
"request_enhanced_identity_verification": true,
"information": {
"first_name": "Andrew",
"last_name": "McLeod",
"addresses": [{
"address": "4412 King Alfred Court",
"city": "Victoria",
"province_state": "BC",
"country": "CA",
"current": true
},
],
},
"position_or_property_location": {
"address": "Tiffany & Co., 97 Greene St",
"city": "New York City",
"county": "New York",
"province_state": "NY",
"country": "US",
"postal_code": "10012",
"location_type": "Position Location"
}
}"enhanced_identity_verification": {
"id": "1e542c5c-f9af-4e6f-8d27-f19dd8682fd7",
"created": "2019-11-11T16:00:00.000000Z",
"modified": "2019-11-11T16:00:00.000000Z",
"status": "P",
"result": "None",
"reasons": ["Verification Status Not Set"],
"identity": {
"name": {
"first_name": null,
"last_name": null,
},
"date_of_birth": null,
"current_address": null,
},
"status_label": "Pending",
"result_label": "None",
"redirect_url": "https://app.certn.co/one_id?session=XpZNFlUZ3dJaXdpYVdGMElqb3hOamMxTXpZd01ETXpmUS5nbnVXZlQ4enQ3bkF5ODFQWjF&lang=en"
"front": null,
"back": null,
"face": null,
}{
"request_enhanced_identity_verification": true,
"information": {
"first_name": "Andrew",
"last_name": "McLeod",
"addresses": [{
"address": "4412 King Alfred Court",
"city": "Victoria",
"province_state": "BC",
"country": "CA",
"current": true
},
],
},
"enhanced_identity_verification": {
"on_success_url": "https://certn.co/"
},
"position_or_property_location": {
"address": "Tiffany & Co., 97 Greene St",
"city": "New York City",
"county": "New York",
"province_state": "NY",
"country": "US",
"postal_code": "10012",
"location_type": "Position Location"
}
}"enhanced_identity_verification": {
"id": "1e542c5c-f9af-4e6f-8d27-f19dd8682fd7",
"created": "2019-11-11T16:00:00.000000Z",
"modified": "2019-11-11T16:00:00.000000Z",
"status": "P",
"result": "None",
"reasons": ["Verification Status Not Set"],
"identity": {
"name": {
"first_name": null,
"last_name": null,
},
"date_of_birth": null,
"current_address": null,
},
"status_label": "Pending",
"result_label": "None",
"redirect_url": "https://app.certn.co/one_id?session=XpZNFlUZ3dJaXdpYVdGMElqb3hOamMxTXpZd01ETXpmUS5nbnVXZlQ4enQ3bkF5ODFQWjF&lang=en&on_success_url=https://certn.co/"
"front": null,
"back": null,
"face": null,
}All notable changes to the api docs are documented in this file.
countyScreen an applicant instantlyposition_or_property_location{ACIC parameters}position_or_property_location with location_type: "Gig location".current under Address in Application parameters.Certn API parameters for how to request checks, collect information and generate reports.
{
"created": "2023-08-09T00:00:00Z",
"modified": "2023-09-19T00:00:00Z",
"last_updated": "2023-08-09T14:54:28.167925Z",
"submitted_time": "2023-08-09T14:53:34.829184Z",
"request_identity_verification": false,
"request_equifax": false,
"request_base": false,
"request_instant_verify_employment": false,
"request_instant_verify_education": false,
"request_instant_verify_credential": false,
"request_international_criminal_record_check": false,
"request_enhanced_identity_verification": true,
"request_motor_vehicle_records": false,
"request_criminal_record_check": true,
"request_enhanced_criminal_record_check": false,
"request_vulnerable_sector_criminal_record_check": false,
"request_employer_references": false,
"request_address_references": false,
"request_employer_phone_references": false,
"request_address_phone_references": false,
"request_softcheck": false,
"request_social_media_check": false,
"request_soquij": false,
"request_us_criminal_record_check_tier_1": false,
"request_us_criminal_record_check_tier_2": false,
"request_us_criminal_record_check_tier_3": false,
"request_education_verification": false,
"request_credential_verification": false,
"request_employment_verification": false,
"request_vaccination_check": false,
"request_right_to_work": false,
"request_uk_basic_dbs_check": false,
"request_uk_basic_ds_check": false,
"request_uk_right_to_work_check": false,
"requested_countries": [],
"us_criminal_record_check_years": 7,
"employer_questionaire_id": null,
"address_questionaire_id": null,
"employer_references_max": 1,
"employer_references_min": 1,
"address_references_max": 1,
"address_references_min": 1,
"employment_verification_min": 1,
"employment_verification_max": 1,
"education_verification_min": 1,
"education_verification_max": 1,
"credential_verification_min": 1,
"credential_verification_max": 1,
"credential_verification_level": "ALL",
"education_verification_level": "ALL",
"employer_references_years": 3,
"address_references_years": 3,
"employment_verification_years": 3,
"address_references_years_or_individually": "INDIVIDUALLY",
"employer_references_years_or_individually": "INDIVIDUALLY",
"employment_verification_years_or_individually": "INDIVIDUALLY",
"purpose_of_check": null,
"position_title": "",
"place_of_work": "",
"license_type": "",
"issuing_authority": "",
"reason_for_check": "",
"state_or_territory": "",
"location_of_work": "",
"volunteer_role": "",
"volunteer_organization": "",
"role_or_position_title": "",
"employment_sector": "",
"id": "1ba124f1-d473-44c0-a066-d623b2cb6253",
"short_uid": "pmndgAeH",
"is_submitted": true,
"applicant_type": "Standard",
"check_executions": [
{
"id": "check_exec_SYS5AS3GLcZZpo0i1GfNXQ",
"check_name": "criminal_record_check",
"status": "COMPLETE"
},
{
"id": "check_exec_9P30IejFvBj2mGCs3p98Fu",
"check_name": "enhanced_identity_verification",
"status": "COMPLETE"
}
],
"result": "CLEARED",
"result_label": "Cleared",
"report_status": "COMPLETE",
"certn_score": null,
"certn_score_label": "PASS",
"certn_score_value": "PASS",
"country": "US",
"tag": null,
"order_status": "COMPLETE",
"early_termination": "0.00",
"early_termination_label": "Low",
"reliability_risk": "0.00",
"reliability_risk_label": "Low",
"workplace_misconduct": "0.00",
"workplace_misconduct_label": "Low",
"salary": null,
"sufficient_salary": null,
"high_risk_vulnerable_sector": null,
"job_safety_undue_risk": null,
"information": {
"id": "487f8bc2-7a9e-4119-92ad-b482770d7ecb",
"status": "Completed",
"status_label": "Completed",
"title": null,
"other_title": null,
"first_name": "Andrew",
"middle_name": null,
"last_name": "Mcleod",
"last_name_at_birth": null,
"former_names": null,
"applicant_names": [],
"alias": null,
"date_of_birth": "1990-01-11",
"sin_ssn": null,
"phone_number": "+1 587 785 1122",
"phone": {
"id": "6fa152e8-7334-4b53-9254-b224fb654b41",
"phone_type": "NONE",
"phone_type_label": "None",
"country": "CA",
"national_number": "5877851122",
"calling_code": "1",
"number": "+1 587 785 1122"
},
"gender": "M",
"birth_city": "Edmonton",
"birth_province_state": "AB",
"birth_country": "CA",
"birth_other_province_state": null,
"mothers_maiden_name": null,
"rcmp_consent_form": "",
"mothers_first_name": null,
"mothers_last_name": null,
"fathers_first_name": null,
"fathers_last_name": null,
"grandfathers_first_name": null,
"brazil_fiscal_declaration_number": null,
"position_applied_for": null,
"philippines_social_security_number": null,
"colombian_national_id_number": null,
"serbian_id_number": null,
"marital_status": null,
"number_of_children": null,
"profession": null,
"license_number": null,
"license_valid": null,
"license_prov_state": null,
"license_other_country": null,
"license_type": null,
"addresses": [
{
"id": "e9d8a6aa-5bb6-4cf8-a090-c99130200cd2",
"created": "2023-08-09T14:53:01.190320Z",
"address": "1006 Fort Street",
"unit": "Unit 300",
"city": "Victoria",
"province_state": "BC",
"other_province_state": null,
"country": "CA",
"country_label": "Canada",
"postal_code": "V8V3K4",
"rent_or_own": "R",
"cost": null,
"start_date": "2016-08-09",
"end_date": null,
"reason_for_leaving": "N",
"landlords_first_name": null,
"landlords_last_name": null,
"landlords_phone": null,
"landlords_email": null,
"reference": null,
"full_address": "Unit 300 1006 Fort Street Victoria CRD BC Canada V8V3K4",
"full_address_full_province_state": "Unit 300 1006 Fort Street Victoria CRD British Columbia Canada V8V3K4",
"information": {
"first_name": "Andrew",
"last_name": "Mcleod"
},
"address_reference": null,
"other_reason_for_leaving": null,
"auto_address": null,
"place_id": null,
"rent_or_own_label": "Rent",
"reference_verified": false,
"county": "CRD",
"current": true
}
],
"employers": [],
"educations": [],
"credentials": [],
"personal_references": [],
"custom_questions": [],
"identity_numbers": [
{
"id": "c0775978-4701-4756-9eed-d8890db6a3c9",
"country": "CA",
"number": "123123123",
"identity_number_type": null,
"issuing_state_province_or_territory": null
}
],
"employer_references": [],
"employer_reference_skip_reason": null,
"employer_reference_skip_reason_description": null,
"social_media_details": null,
"documents": [],
"skills": [],
"cover_letter": null,
"disclosure_accepted": true,
"rcmp_consent_given": false,
"us_criminal_consent_given": true,
"mycrc_consent_given": false,
"international_criminal_consent_given": true,
"biometric_consent_given": true,
"vaccination_consent_given": false,
"terms_accepted": true,
"requested_disclosure_email": false,
"non_criminal_consent_given": true,
"dbs_paper_certificate_consent_given": null,
"uk_generic_consent_given": false,
"self_reported_vaccination_status": null,
"convictions": [],
"conviction_explanation": null,
"early_terminations": [],
"early_termination_explanation": null,
"vaccination_document": null,
"position_or_property_location_id": "c5059c4c-ef2d-42fe-81bd-061ec58f53e1",
"emergency_contact": false,
"emergency_contact_first_name": null,
"emergency_contact_last_name": null,
"emergency_contact_phone": null,
"emergency_contact_email": null,
"purpose": null,
"dbs_profile_number": null,
"dbs_profile_number_exists": null,
"dbs_paper_certificate_current_address_confirmation": null,
"dbs_paper_certificate_recipient_department": null,
"dbs_paper_certificate_recipient_name": null,
"dbs_paper_certificate_address": null,
"has_valid_uk_or_irish_passport": null,
"citizenship": []
},
"employment_verification": "NONE",
"education_verification": "NONE",
"credential_verification": "NONE",
"reference_result": {
"id": "1c9ecd87-eb83-4831-ab57-cc91b33e60c5",
"status": "NONE",
"overall_score": "NONE",
"overall_score_label": "None",
"red_flags": null,
"green_flags": null,
"result": "NONE",
"address_reference_results": [],
"employer_reference_results": [],
"status_label": "None",
"result_label": "None"
},
"information_result": {
"id": "075b2ba0-311c-4520-9080-a17e8ad8b8a1",
"status": "None",
"overall_score": "NONE",
"overall_score_label": "None",
"red_flags": null,
"green_flags": null,
"result": "NONE",
"description": "The applicant score is based on self-provided information from the applicant and an analysis of the applicant's information available to Certn. This includes previous education history, reported skills, employment history, employment duration, employment references, as well as other important informational data points. Please note that an Applicant Details score is not provided with the BACKGROUND CHECK applicant screening option",
"upgradable": true,
"status_label": "None",
"result_label": "None"
},
"risk_result": {
"id": "1e633997-d3f8-4593-a5d2-6a0fb9c0e9b0",
"status": "NONE",
"overall_score": "NONE",
"risk_evaluations": [],
"red_flags": null,
"green_flags": null,
"description": "The social score is based on self-provided information from the applicant and an analysis of the applicant's information available to Certn. This includes a criminal identity scan, social profile scan, as well as other important informational data points. *Note that when criminal identities are discovered the overall Certn score is not impacted by the results found unless the match similarity is above our confidence threshold of 95%.",
"risk_description": "The criminal identity risk is an assessment of the risk posed to assets given the results of the criminal identity scan. Please review any risk relevant information from our negative news and criminal database analysis below.",
"similarity_description": "The criminal identity similarity percentage is a comparison between the applicant's self-provided information and the corresponding information we find in our databases. As a general guideline, if the results of our criminal identity scan has a similarity percentage of above 95%, Certn can confidently predict that the information presented below corresponds correctly to the applicant being screened. However, if the criminal identity scan returns results with a similarity percentage below 95%, the onus falls to the client to accurately verify the results.",
"match_description": "The criminal identity Match Score is a comparison between the applicant's self-provided information and the corresponding information we find in our databases. As a general guideline, if the results of our criminal identity scan finds a 'Likely Match', Certn can confidently predict that the information presented below corresponds correctly to the applicant being screened. However, if the criminal identity scan returns results with a Match Score of 'Possible Match', the onus falls on the client to accurately verify the results.",
"scan_status": {
"criminal_scan": "CLEARED",
"criminal_scan_label": "Cleared",
"fraud_scan": "CLEARED",
"fraud_scan_label": "Cleared",
"sex_offender_scan": "CLEARED",
"sex_offender_scan_label": "Cleared",
"known_affiliation_scan": "CLEARED",
"known_affliation_scan_label": "Cleared",
"ofac_global_terrorist_scan": "CLEARED",
"ofac_global_terrorist_scan_label": "Cleared",
"politically_exposed_person_scan": "CLEARED",
"politically_exposed_person_scan_label": "Cleared",
"public_safety_scan": "CLEARED",
"public_safety_scan_label": "Cleared",
"global_clearance_scan": "CLEARED",
"global_clearance_scan_label": "Cleared",
"other_scan": "CLEARED",
"other_scan_label": "Cleared",
"public_profile_scan": "NOT FOUND",
"public_profile_scan_label": "Not Found",
"public_court_records": "CLEARED",
"public_court_records_label": "Cleared"
}
},
"soquij_result": {
"id": "6f7ec5b8-e108-401b-b7bb-26509d00b828",
"status": "NONE",
"overall_score": "NONE",
"overall_score_label": "None",
"red_flags": null,
"green_flags": null,
"result": "NONE",
"court_matches": [],
"status_label": "None",
"result_label": "None"
},
"right_to_work_result": {
"id": "6ba50e3c-ca73-44ad-80b5-e372a4ce19ef",
"status": "NONE",
"overall_score": "NONE",
"overall_score_label": "None",
"red_flags": null,
"green_flags": null,
"result": "NONE",
"candidate_details": null,
"visa_details": null,
"status_label": "None",
"result_label": "None"
},
"uk_right_to_work_check_result": {
"id": "05aa740e-4dc4-49ba-b8a5-d7edc4d0d734",
"status": "NONE",
"overall_score": "NONE",
"overall_score_label": "None",
"red_flags": null,
"green_flags": null,
"result": "NONE",
"uk_right_to_work_result_document": null,
"status_label": "None",
"result_label": "None"
},
"equifax_result": {
"id": "fe5f1a82-8d21-4ecf-a210-4a5651937dec",
"status": "NONE",
"overall_score": "NONE",
"overall_score_label": "None",
"red_flags": null,
"green_flags": null,
"result": "NONE",
"created": "2023-08-09T14:53:33.929625Z",
"credit_score": null,
"credit_check_date": null,
"credit_check_failed": false,
"credit_check_errors": null,
"get_status_display": "None",
"upgradable": true,
"credit_check_warnings": null,
"revolving_credit_total_balance": null,
"revolving_credit_max_total_limit": null,
"revolving_credit_percent_credit_used": null,
"revolving_credit_number_of_cards": null,
"revolving_credit_past_due_amount": null,
"revolving_credit_late_payments_30": null,
"revolving_credit_late_payments_60": null,
"revolving_credit_late_payments_90": null,
"revolving_credit_monthly_payments": null,
"other_credit_total_balance": null,
"other_credit_max_total_limit": null,
"other_credit_percent_credit_used": null,
"other_credit_number_of_cards": null,
"other_credit_past_due_amount": null,
"other_credit_late_payments_30": null,
"other_credit_late_payments_60": null,
"other_credit_late_payments_90": null,
"other_credit_monthly_payments": null,
"mortgage_loans_total_balance": null,
"mortgage_loans_max_total_limit": null,
"mortgage_loans_percent_credit_used": null,
"mortgage_loans_number_of_mortgages": null,
"mortgage_loans_past_due_amount": null,
"mortgage_loans_late_payments_30": null,
"mortgage_loans_late_payments_60": null,
"mortgage_loans_late_payments_90": null,
"mortgage_loans_monthly_payments": null,
"auto_loans_total_balance": null,
"auto_loans_max_total_limit": null,
"auto_loans_percent_credit_used": null,
"auto_loans_number_of_loans": null,
"auto_loans_past_due_amount": null,
"auto_loans_late_payments_30": null,
"auto_loans_late_payments_60": null,
"auto_loans_late_payments_90": null,
"auto_loans_monthly_payments": null,
"student_loans_total_balance": null,
"student_loans_max_total_limit": null,
"student_loans_percent_credit_used": null,
"student_loans_number_of_loans": null,
"student_loans_past_due_amount": null,
"student_loans_late_payments_30": null,
"student_loans_late_payments_60": null,
"student_loans_late_payments_90": null,
"student_loans_monthly_payments": null,
"other_debts_total_balance": null,
"other_debts_max_total_limit": null,
"other_debts_percent_credit_used": null,
"other_debts_number_of_debts": null,
"other_debts_past_due_amount": null,
"other_debts_late_payments_30": null,
"other_debts_late_payments_60": null,
"other_debts_late_payments_90": null,
"other_debts_monthly_payments": null,
"description": "The financial score is based on self-provided information from the applicant and an analysis of the applicant's information available to Certn. This includes a credit check, Equifax record analysis, as well as other important informational data points.",
"total_debt": null,
"trades": [],
"collections": [],
"deposit_alerts": [],
"addresses": [],
"employers": [],
"bankruptcies": [],
"judgments": [],
"liens": [],
"legal_items": [],
"secured_loans": [],
"fraud_warnings": [],
"non_sufficient_funds": [],
"credit_file_metadatas": [],
"other_incomes": [],
"consumer_statements": [],
"bank_accounts": [],
"local_inquiries": [],
"foreign_inquiries": [],
"status_label": "None",
"result_label": "None"
},
"social_media_check_result": {
"id": "52fc6ec5-aacb-4cd6-9fcd-b51d37609666",
"status": "NONE",
"overall_score": "NONE",
"overall_score_label": "None",
"red_flags": null,
"green_flags": null,
"result": "NONE",
"status_label": "None",
"result_label": "None"
},
"employment_verified": null,
"identity_verified": null,
"identity_verification": {
"id": "a5797e1f-7362-47c3-82b1-80fa0783f9fd",
"created": "2023-08-09T14:52:06.521380Z",
"modified": "2023-08-09T14:52:06.521401Z",
"status": "N",
"result": "None",
"reasons": [],
"identity": {
"name": {
"first_name": null,
"middle_name": null,
"last_name": null
},
"date_of_birth": null,
"phone_number": {
"raw_phone_number": null
},
"sin_ssn": null,
"drivers_licence": null,
"current_address": null,
"former_address": null,
"customer_id": "13a0ba79353843fcb758c474eeb42e"
},
"status_label": "None",
"result_label": null,
"score": null
},
"enhanced_identity_verification": {
"id": "a172f921-2dab-4c22-a331-d426a11d0535",
"created": "2023-08-09T14:52:06.537371Z",
"modified": "2023-08-09T14:53:34.845220Z",
"status": "A",
"result": "VERIFIED",
"reasons": [
"Verified"
],
"identity": {
"name": {
"first_name": "Andrew",
"last_name": "Mcleod"
},
"date_of_birth": "1990-01-11",
"current_address": {
"unit": "Unit 300",
"street_name": "1006 Fort Street",
"city": "Victoria",
"province": "BC",
"county": null,
"country_code": "CA",
"postcode": "V8V3K4",
"full_address": "Unit 300 1006 Fort Street Victoria BC Canada V8V3K4"
}
},
"status_label": "Accepted",
"result_label": "Verified",
"redirect_url": null,
"front": "http://minio:9000/one-id-images/nv_6b375553-aacc-461e-8205-7bd2a0088c8d_front.jpg?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=minio%2F20230919%2Fca-central-1%2Fs3%2Faws4_request&X-Amz-Date=20230919T202348Z&X-Amz-Expires=3600&X-Amz-SignedHeaders=host&X-Amz-Signature=106cbe2f70135ac8a87500cb3133a5b796118efc1f695e14579abf892fcb2a04",
"back": "http://minio:9000/one-id-images/nv_6b375553-aacc-461e-8205-7bd2a0088c8d_back.jpg?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=minio%2F20230919%2Fca-central-1%2Fs3%2Faws4_request&X-Amz-Date=20230919T202348Z&X-Amz-Expires=3600&X-Amz-SignedHeaders=host&X-Amz-Signature=81b5871f11d6558e6f1a243828c9fb19af5c5eab53a1bc42e206e710c390e508",
"face": "http://minio:9000/one-id-images/nv_6b375553-aacc-461e-8205-7bd2a0088c8d_face.jpg?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=minio%2F20230919%2Fca-central-1%2Fs3%2Faws4_request&X-Amz-Date=20230919T202348Z&X-Amz-Expires=3600&X-Amz-SignedHeaders=host&X-Amz-Signature=2e94a3e664c261b38e8f84d28b69eeabfa68aabd1d3089b896941fa793e5f5af",
"document_type": null,
"document_type_label": null,
"document_number": null,
"issuing_country": null,
"issuing_jurisdiction": null,
"expiry_date": null,
"first_name": "Andrew",
"middle_name": null,
"last_name": "Mcleod",
"date_of_birth": "1990-01-11",
"address": {
"id": "db7ec4fe-f75a-4d2c-8c76-3572b8f6de1f",
"unit": "Unit 300",
"address": "1006 Fort Street",
"city": "Victoria",
"county": null,
"province_state": "BC",
"country": "CA",
"postal_code": "V8V3K4",
"supplemental_document_description": null
},
"identity_verification_provider": "ONEID1",
"birth_country": null,
"gender": null
},
"manual_id_verification": {
"id": "3d03d365-6d83-4887-9564-0fd4a1018b49",
"created": "2023-08-09T14:52:37.267352Z",
"modified": "2023-08-09T14:52:37.267371Z",
"status": "N",
"result": "NONE",
"reasons": [],
"identity": {
"name": {
"first_name": "",
"middle_name": null,
"last_name": ""
},
"date_of_birth": null,
"current_address": null
},
"status_label": "None",
"result_label": "None",
"document_type": "",
"document_number": null,
"expiry_date": null,
"issuing_country": null,
"issuing_jurisdiction": null
},
"rcmp_result": {
"id": "46b06c92-6ea2-4395-9812-94c313cbeac6",
"status": "RETURNED",
"overall_score": "PASS",
"overall_score_label": "Pass",
"red_flags": [],
"green_flags": [],
"result": "CLEARED",
"notes": "Just a great dude!",
"response": "NEGATIVE",
"response_label": "NEGATIVE",
"vulnerable_sector": "NONE",
"vulnerable_sector_label": "None",
"enhanced": "NONE",
"enhanced_label": "None",
"comments": "Based solely on the name(s) and date of birth provided and the criminal record information declared by the applicant, a search of the RCMP National Repository of Criminal Records did not identify any records with the name(s) and date of birth of the applicant. Positive identification that a criminal record does or does not exist at the RCMP National Repository of Criminal Records can only be confirmed by fingerprint comparison. Delays do exist between a conviction being rendered in court, and the details being accessible on the RCMP National Repository of Criminal Records. Not all offenses are reported to the RCMP National Repository of Criminal Records.",
"issued_date": "2023-08-09",
"enhanced_comments": null,
"vulnerable_sector_comments": null,
"order_id": null,
"reflow_status": null,
"rcmp_result_document": "http://minio:9000/certn-rcmp-documents/rcmp_result_1ba124f1-d473-44c0-a066-d623b2cb6253.pdf?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=minio%2F20230919%2Fca-central-1%2Fs3%2Faws4_request&X-Amz-Date=20230919T202348Z&X-Amz-Expires=604800&X-Amz-SignedHeaders=host&X-Amz-Signature=96d28dc777fadf61e90c5b72565e8abd8f4186248fe9135699965eba307990de",
"status_label": "Returned",
"result_label": "Cleared"
},
"us_criminal_record_check_result": {
"id": "8c85d362-6d6d-44c7-91bc-5d990bab0e0b",
"status": "NONE",
"overall_score": "NONE",
"overall_score_label": "None",
"red_flags": null,
"green_flags": null,
"result": "NONE",
"ssn_id_document_reports": [],
"federal_record_check_result": null,
"record_check_details": [],
"single_state_county_record_check_result": {
"id": "e9ca36be-5da2-43e9-8af2-bfbc3b5ef2a6",
"status": "NONE",
"overall_score": "NONE",
"overall_score_label": "None",
"red_flags": null,
"green_flags": null,
"result": "NONE",
"record_check_details": [],
"status_label": "None",
"result_label": "None"
},
"all_state_county_record_check_result": {
"id": "cb3d853a-0b56-44fe-918b-506204385a7f",
"status": "NONE",
"overall_score": "NONE",
"overall_score_label": "None",
"red_flags": null,
"green_flags": null,
"result": "NONE",
"record_check_details": [],
"status_label": "None",
"result_label": "None"
},
"criminal_cases": [],
"scan_status": {
"national_sex_offender_registry_scan": "Incomplete",
"national_sex_offender_registry_scan_status": "INCOMPLETE",
"security_watch_list_scan": "Incomplete",
"security_watch_list_scan_status": "INCOMPLETE",
"fraud_scan": "Incomplete",
"fraud_scan_status": "INCOMPLETE",
"ofac_global_sanctions_scan": "Incomplete",
"ofac_global_sanctions_scan_status": "INCOMPLETE",
"ssn_verification_scan": "Incomplete",
"ssn_verification_scan_status": "INCOMPLETE",
"criminal_record_scan": "Incomplete",
"criminal_record_scan_status": "INCOMPLETE",
"federal_record_scan": "None",
"federal_record_scan_status": "NONE",
"single_state_county_record_scan": "None",
"single_state_county_record_scan_status": "NONE",
"all_state_county_record_scan": "None",
"all_state_county_record_scan_status": "NONE"
},
"notes": "",
"record_check_requests": [],
"status_label": "None",
"result_label": "None"
},
"international_criminal_record_check_result": {
"id": "889cb17a-5f5b-430e-92ef-04dad20e7d7c",
"status": "NONE",
"overall_score": "NONE",
"overall_score_label": "None",
"red_flags": null,
"green_flags": null,
"result": "NONE",
"international_criminal_record_checks": [],
"status_label": "None",
"result_label": "None"
},
"motor_vehicle_record_result": {
"id": "8e93131a-4250-4886-82eb-3b4fb1752f9f",
"status": "NONE",
"overall_score": "NONE",
"overall_score_label": "None",
"red_flags": null,
"green_flags": null,
"result": "NONE",
"licence": null,
"abstract": null,
"restrictions": [],
"violations": [],
"date_of_birth": null,
"hair_colour": null,
"eye_colour": null,
"height": null,
"weight": null,
"name": null,
"addresses": [],
"medical_certificates": [],
"status_label": "None",
"result_label": "None"
},
"verification_result": {
"id": "1d9cc1e2-fc6a-4786-a1c4-fbd01d0f7d5c",
"status": "NONE",
"status_label": "None",
"overall_score": "NONE",
"overall_score_label": "None",
"red_flags": null,
"green_flags": null,
"result": "NONE",
"employer_verification_results": [],
"education_verification_results": [],
"credential_verification_results": [],
"certn_verification": "NONE",
"certn_verification_label": "None",
"result_label": "None"
},
"instant_verify_result": {
"instant_verify_employment": {
"instant_verify_employment_result": [],
"status": "NONE",
"result": "NONE",
"status_label": "None",
"result_label": "None"
},
"instant_verify_education": {
"instant_verify_education_result": [],
"status": "NONE",
"result": "NONE",
"status_label": "None",
"result_label": "None"
},
"instant_verify_credential": {
"instant_verify_credential_result": [],
"status": "NONE",
"result": "NONE",
"status_label": "None",
"result_label": "None"
}
},
"applicant_account": {
"id": "13a0ba79-3538-43fc-b758-c474eeb42eb7",
"email": "[email protected]",
"email_verified": false,
"phone_number": null
},
"application": {
"created": "2023-08-09T00:00:00Z",
"modified": "2023-08-09T00:00:00Z",
"id": "49090723-1409-408e-a4cc-98f80af3770f",
"applicant": {
"id": "1ba124f1-d473-44c0-a066-d623b2cb6253",
"status": "Returned",
"first_name": "Andrew",
"last_name": "Mcleod",
"email": "[email protected]",
"phone_number": null,
"certn_score": null,
"application_url": "http://localhost:3000/welcome/email?session=919bde7b-00a1-4026-aafc-cda4ac46728b&token=8a24a8a3-01a4-4628-9523-89220dd6fe62&onboardingType=HR&inviteRoute=email",
"report_url": "http://localhost:3000/hr/applications/1ba124f1-d473-44c0-a066-d623b2cb6253/",
"hr_onboarding_session": {
"id": "919bde7b-00a1-4026-aafc-cda4ac46728b",
"verification_token": "8a24a8a3-01a4-4628-9523-89220dd6fe62",
"welcome": "submit",
"tracks": [
"email",
"biometricConsent",
"oneId",
"basics",
"addresses",
"positionPropertyLocation",
"consentAndDisclosure",
"birthplace",
"gender",
"moreBasics",
"history",
"summary",
"submit"
]
},
"services_undergoing_adjudication": [],
"employer_references_min": 1
},
"owner": "66a12ab1-0fa5-4d24-a147-b122f0a71494",
"listing": {
"name": "",
"is_active": false,
"url_code": "",
"owner_id": null,
"notification_list_ids": [],
"start_date": null,
"work_type": null,
"address": {
"address": "",
"city": "",
"province_state": null,
"country": null
},
"position_name": "",
"required_years_relevant_experience": null,
"required_skills_ids": [],
"required_specializations_ids": [],
"required_education_id": null,
"salary": null,
"sufficient_salary": false,
"high_risk_vulnerable_sector": false,
"job_safety_undue_risk": false,
"test_collection": {
"request_identity_verification": false,
"request_equifax": false,
"request_base": false,
"request_instant_verify_employment": false,
"request_instant_verify_education": false,
"request_instant_verify_credential": false,
"request_international_criminal_record_check": false,
"request_enhanced_identity_verification": false,
"request_motor_vehicle_records": false,
"request_criminal_record_check": false,
"request_enhanced_criminal_record_check": false,
"request_vulnerable_sector_criminal_record_check": false,
"request_employer_references": false,
"request_address_references": false,
"request_employer_phone_references": false,
"request_address_phone_references": false,
"request_softcheck": false,
"request_social_media_check": false,
"request_soquij": false,
"request_us_criminal_record_check_tier_1": false,
"request_us_criminal_record_check_tier_2": false,
"request_us_criminal_record_check_tier_3": false,
"request_education_verification": false,
"request_credential_verification": false,
"request_employment_verification": false,
"request_vaccination_check": false,
"request_right_to_work": false,
"request_uk_basic_dbs_check": false,
"request_uk_basic_ds_check": false,
"request_uk_right_to_work_check": false,
"requested_countries": [],
"us_criminal_record_check_years": null,
"employer_questionaire_id": null,
"address_questionaire_id": null,
"employer_references_max": null,
"employer_references_min": null,
"address_references_max": null,
"address_references_min": null,
"employment_verification_min": null,
"employment_verification_max": null,
"education_verification_min": null,
"education_verification_max": null,
"credential_verification_min": null,
"credential_verification_max": null,
"credential_verification_level": null,
"education_verification_level": null,
"employer_references_years": null,
"address_references_years": null,
"employment_verification_years": null,
"address_references_years_or_individually": "",
"employer_references_years_or_individually": "",
"employment_verification_years_or_individually": null,
"purpose_of_check": null,
"position_title": "",
"place_of_work": "",
"license_type": "",
"issuing_authority": "",
"reason_for_check": "",
"state_or_territory": "",
"location_of_work": "",
"volunteer_role": "",
"volunteer_organization": "",
"role_or_position_title": "",
"employment_sector": null,
"name": "",
"us_test": false,
"team": null,
"superteam": null,
"integration": "",
"international_follow_up_cost_threshold": null,
"is_quickscreen": false
},
"team_id": null
},
"is_active": true,
"is_selected": false,
"team_id": "8ca4efec-baf5-449f-95b8-9e93377bce54",
"team": {
"id": "8ca4efec-baf5-449f-95b8-9e93377bce54",
"name": "CertnAdmin",
"country": "US",
"industry": null,
"team_type": "OT",
"internal_name": "CertnAdmin",
"app_url": "http://localhost:3000/",
"compliance_region": {
"id": "86d4680c-65f5-497b-b71c-e605a48f2798",
"name": "Initial",
"country": "US",
"team_type": "HR",
"sub_region": "",
"default": true,
"score_value_field": "report_summary.report_result",
"score_label_field": "report_summary.report_result_label",
"show_legal_us": true,
"show_credit_report": true,
"show_fcra": true,
"require_address_history": false
},
"settings_config": {
"volunteer_role": "",
"education_verification_min": 1,
"request_education_verification": false,
"tenancy_ref_phone_req": true,
"request_enhanced_identity_verification": false,
"exclude_softcheck_possible_matches": false,
"hide_activity_log": true,
"location_of_work": "",
"enable_rcmp_reflow": false,
"license_type": "",
"address_references_years": 3,
"request_motor_vehicle_records": false,
"employer_ref_req": false,
"tenancy_ref_email_req": false,
"request_right_to_work": false,
"visa_req": false,
"request_employment_verification": false,
"org_logo_link": "http://minio:9000/certn-images/certn_logo_new.png",
"request_international_criminal_record_check": false,
"credential_verification_max": 1,
"hide_current_address": true,
"volunteer_organization": "",
"place_of_work": "",
"employment_verification_min": 1,
"request_enhanced_criminal_record_check": false,
"employer_references_years": 3,
"state_or_territory": "",
"workable_fast_complete": false,
"document_required": false,
"request_us_criminal_record_check_tier_3": false,
"employment_sector": "",
"request_criminal_record_check": false,
"proof_of_income_req": false,
"credential_verification_level": "ALL",
"reason_for_check": "",
"redirect_url": null,
"my_crc_region": null,
"request_uk_basic_dbs_check": false,
"employment_verification_years": 3,
"get_org_name": "CertnAdmin",
"government_id_req": false,
"request_us_criminal_record_check_tier_2": false,
"hide_date_of_birth": false,
"request_credential_verification": false,
"request_vaccination_check": false,
"request_softcheck": false,
"request_address_phone_references": false,
"request_social_media_check": false,
"require_id_with_address": false,
"employer_references_years_or_individually": "INDIVIDUALLY",
"us_criminal_record_check_years": 7,
"request_instant_verify_education": false,
"passport_req": false,
"request_instant_verify_employment": false,
"whitelabel_report": false,
"personal_ref_amount_req": 0,
"hide_detailed_financial": false,
"address_references_min": 1,
"employer_references_min": 1,
"address_references_max": 1,
"org_primary_color": "#084146",
"request_uk_basic_ds_check": false,
"hide_sin_ssn": false,
"request_us_criminal_record_check_tier_1": false,
"purpose_of_check": null,
"personal_ref_req": false,
"role_or_position_title": "",
"position_title": "",
"education_req": false,
"issuing_authority": "",
"custom_tracks": [],
"credential_verification_min": 1,
"request_uk_right_to_work_check": false,
"education_verification_max": 1,
"review_all_negative_mvr_results": false,
"request_employer_phone_references": false,
"request_employer_references": false,
"tenancy_years_amount_req": 2,
"cover_letter_req": false,
"emergency_contact_req": false,
"request_soquij": false,
"employer_years_amount_req": 0,
"request_instant_verify_credential": false,
"education_verification_level": "ALL",
"address_references_years_or_individually": "INDIVIDUALLY",
"request_base": false,
"org_name": null,
"employer_ref_email_req": false,
"employment_verification_years_or_individually": "INDIVIDUALLY",
"whitelabel_emails": false,
"request_equifax": false,
"compact_pdf_report": false,
"resume_req": false,
"limit_education_verifications": false,
"employer_ref_phone_req": true,
"employment_verification_max": 1,
"tenancy_ref_amount_req": 1,
"applicant_login": false,
"request_vulnerable_sector_criminal_record_check": false,
"hide_id_verification_photos": true,
"hide_ssn_trace": true,
"request_identity_verification": false,
"request_address_references": false,
"employer_references_max": 1
},
"billing_plan": {
"pm_request_softcheck_price": "9.99",
"hr_request_softcheck_price": "9.99",
"pm_request_equifax_price": "14.99",
"hr_request_equifax_price": "14.99",
"pm_request_identity_verification_price": "1.99",
"hr_request_identity_verification_price": "1.99",
"pm_request_enhanced_identity_verification_price": "4.99",
"hr_request_enhanced_identity_verification_price": "4.99",
"pm_request_criminal_record_check_price": "29.99",
"hr_request_criminal_record_check_price": "29.99",
"pm_request_vulnerable_sector_criminal_record_check_price": "49.99",
"hr_request_vulnerable_sector_criminal_record_check_price": "49.99",
"pm_request_motor_vehicle_records_price": "24.99",
"hr_request_motor_vehicle_records_price": "24.99",
"pm_request_education_verification_price": "14.99",
"hr_request_education_verification_price": "14.99",
"pm_request_credential_verification_price": "14.99",
"hr_request_credential_verification_price": "14.99",
"pm_request_employment_verification_price": "14.99",
"hr_request_employment_verification_price": "14.99",
"pm_request_us_criminal_record_check_tier_1_price": "15.00",
"hr_request_us_criminal_record_check_tier_1_price": "15.00",
"pm_request_us_criminal_record_check_tier_2_price": "15.00",
"hr_request_us_criminal_record_check_tier_2_price": "15.00",
"pm_request_us_criminal_record_check_tier_3_seven_year_price": "10.00",
"hr_request_us_criminal_record_check_tier_3_seven_year_price": "10.00",
"pm_request_us_criminal_record_check_tier_3_ten_year_price": "15.00",
"hr_request_us_criminal_record_check_tier_3_ten_year_price": "15.00",
"pm_request_employer_references_price": "4.99",
"hr_request_employer_references_price": "4.99",
"pm_request_address_references_price": "4.99",
"hr_request_address_references_price": "4.99",
"pm_request_employer_phone_references_price": "24.99",
"hr_request_employer_phone_references_price": "24.99",
"pm_request_address_phone_references_price": "24.99",
"hr_request_address_phone_references_price": "24.99",
"pm_request_enhanced_criminal_record_check_price": "39.99",
"hr_request_enhanced_criminal_record_check_price": "39.99",
"pm_request_instant_verify_employment_price": "3.00",
"pm_request_instant_verify_education_price": "3.00",
"pm_request_instant_verify_credential_price": "3.00",
"hr_request_instant_verify_employment_price": "3.00",
"hr_request_instant_verify_education_price": "3.00",
"hr_request_instant_verify_credential_price": "3.00",
"pm_request_soquij_price": "3.00",
"hr_request_soquij_price": "3.00",
"stripe_public_api_key": "pk_test_51H32MUK3vEBm6wJ2dElMy37xqbibCucC0CJVVlVvcRbkqzRqCvCXUtgsJBUA4wZasJT9S42C3eNW2w8Cn7T1oOpg00FTkEgY1A"
},
"google_analytics_key": "",
"adwords_key": "",
"adwords_conversion_key": "",
"bing_key": "",
"external_domain": "",
"countries_excluded_from_international_check": []
}
},
"account_association_links": [],
"allow_reminder_emails": true,
"email_references": false,
"dispute": false,
"under_review_us": false,
"under_review_rcmp": false,
"activity_log": [
{
"created": "2023-08-09T00:00:00Z",
"modified": "2023-08-09T00:00:00Z",
"id": "e2f9f038-df30-47bd-a4f1-534c3928288c",
"status": "SENT",
"status_label": "Application sent",
"date_label": "2023-08-09",
"time_label": "02:52:PM"
},
{
"created": "2023-08-09T00:00:00Z",
"modified": "2023-08-09T00:00:00Z",
"id": "3c7ce5dd-327b-48f9-a642-ccdcb6e67838",
"status": "RCMP_BACKGROUND_CHECK_CREATED",
"status_label": "Canadian Criminal Record Check - Created",
"date_label": "2023-08-09",
"time_label": "02:52:PM"
},
{
"created": "2023-08-09T00:00:00Z",
"modified": "2023-08-09T00:00:00Z",
"id": "b68d9fb7-1117-4ca6-9c57-2dad5d2480db",
"status": "ONE_ID_BACKGROUND_CHECK_CREATED",
"status_label": "OneID - Background Check Created",
"date_label": "2023-08-09",
"time_label": "02:52:PM"
},
{
"created": "2023-08-09T00:00:00Z",
"modified": "2023-08-09T00:00:00Z",
"id": "263ab842-22c2-4a5d-8e9a-47446f6b3719",
"status": "STARTED",
"status_label": "Application started",
"date_label": "2023-08-09",
"time_label": "02:52:PM"
},
{
"created": "2023-08-09T00:00:00Z",
"modified": "2023-08-09T00:00:00Z",
"id": "6d90bfaa-a225-42ea-85f7-4f94b364c547",
"status": "SUBMITTED",
"status_label": "Application submitted",
"date_label": "2023-08-09",
"time_label": "02:53:PM"
},
{
"created": "2023-08-09T00:00:00Z",
"modified": "2023-08-09T00:00:00Z",
"id": "d0aedc60-c842-46ec-85c2-1b403f1427db",
"status": "RCMP_BACKGROUND_CHECK_RETURNED",
"status_label": "Canadian Criminal Record Check - Returned",
"date_label": "2023-08-09",
"time_label": "02:54:PM"
},
{
"created": "2023-08-09T00:00:00Z",
"modified": "2023-08-09T00:00:00Z",
"id": "f59e8965-0398-4e7d-9679-f58bd8ef7924",
"status": "COMPLETE",
"status_label": "Application completely returned",
"date_label": "2023-08-09",
"time_label": "02:59:PM"
}
],
"adjudication_status": "NONE",
"adjudication_status_label": "None",
"is_favourite": false,
"report_summary": {
"reference_result": null,
"rcmp_result": {
"status": "RETURNED",
"status_label": "Returned",
"dispute": false,
"overall_score": "PASS",
"overall_score_label": "Pass",
"result": "CLEARED",
"result_label": "Cleared"
},
"enhanced_identity_verification": {
"dispute": false,
"status": "RETURNED",
"status_label": "Returned",
"overall_score": "Verified"
},
"equifax_result": null,
"information_result": null,
"instant_verify_result": null,
"international_criminal_record_check_result": null,
"motor_vehicle_record_result": null,
"social_media_check_result": null,
"risk_result": null,
"soquij_result": null,
"uk_basic_dbs_check_result": null,
"uk_basic_ds_check_result": null,
"uk_right_to_work_check_result": null,
"us_criminal_record_check_result": null,
"vaccination_check_result": null,
"right_to_work_result": null,
"certn_verification": {
"status": "NONE",
"status_label": "None",
"dispute": false,
"education_verification_label": "None",
"credential_verification_label": "None",
"employment_verification_label": "None",
"employment_verification": "NONE",
"education_verification": "NONE",
"credential_verification": "NONE"
},
"report_result": "CLEARED",
"report_result_label": "Cleared",
"dispute": false,
"report_status": "COMPLETE",
"report_status_label": "Complete"
},
"reliability_risk_description": "Reliability risk if assessed using an analysis of an applicant's personal history and / or behavioural organization characteristics that predicts the likelihood of being a reliable employee.",
"workplace_misconduct_description": "Workplace misconduct risk is assessed using an analysis of an applicant's personal history and / or behavioural accountability characteristics that predicts the likelihood of workplace misconduct.",
"early_termination_description": "Early termination risk is assessed using an analysis of an applicant's employment history and / or behavioural culture fit and hardworking characteristics that predicts the likelihood of early termination.",
"applicant_result_description": "Report Results shall in no way be construed as Certn\u2019s opinion, recommendation, or forecast on the solvency, creditworthiness, capability, intention, integrity or motives of the applicant. The Report Results merely reflect a recording of information received by Certn from various sources and Certn accepts no liability for any opinions, comments, actions or decisions made in connection with the Report Results. The application of the Report Results requires independent judgment and skill.",
"applicant_result_summary": "The Applicant score is determined by analysing education history, employment history, and more.",
"social_result_summary": "The Social score is determined by analysing criminal identity, negative news, social profile scans, and more.",
"identity_verified_summary": "Digital identity verification incomplete.",
"can_upgrade": true,
"is_equifax_eligible": true,
"can_resend_email": false,
"resend_email_time": null,
"is_viewed": true,
"onboarding_link": "http://localhost:3000/welcome/email?session=919bde7b-00a1-4026-aafc-cda4ac46728b&token=8a24a8a3-01a4-4628-9523-89220dd6fe62&onboardingType=HR&inviteRoute=email",
"notes": null,
"comments": [],
"applicant_adjudication": {
"id": "8cbb89dd-2113-4dab-a771-76fcb8c8c8ad",
"applicant": "1ba124f1-d473-44c0-a066-d623b2cb6253",
"overall_result": "CLEARED",
"life_cycle_status": "COMPLETE",
"adjudicator": {
"id": "494ec5c6-b0fb-418b-8941-56d58cf25f2b",
"email": "[email protected]",
"first_name": "Kyle",
"last_name": "BehielsADJ"
},
"notes": ""
},
"has_active_automated_reminders": true,
"should_attach_us_summary_of_rights": false,
"summary_of_rights_url": null,
"status": "Returned",
"status_label": "Returned"
}How to organize general resources in Certn's API, such as Superteams, Teams, Users, and Packages .
{
"count": int,
"next": URL,
"previous": URL,
"results": [
{
"id": string <uuid>,
"name": string
}
]
}{
"count": 1,
"next": null,
"previous": null,
"results": [
{
"id": "23554549-b086-4f74-94fe-ccf88e1c643b",
"name": "Superteam Name"
}
]
}{
"id": string <uuid>,
"name": string,
"is_secure_sms_enabled": boolean,
"is_report_id_enabled": boolean,
"street_address": string,
"city": string,
"postal_code": string,
"province_state": string,
"other_province_state": string,
"country": string
}{
"id": "aafa6f6b-e394-4514-b2b4-e5cfdabcffa1",
"name": "Partner Superteam",
"is_secure_sms_enabled": false,
"is_report_id_enabled": true,
"street_address": "123 4 Main Street",
"city": "Victoria",
"postal_code": "V8A1B2",
"province_state": "BC",
"other_province_state": null,
"country": "CA"
}{
"id": "string <uuid>",
"name": "string",
"is_secure_sms_enabled": boolean,
"street_address": "string",
"city": "string",
"postal_code": "string",
"province_state": "string",
"country": "string"
}{
"id": "aafa6f6b-e394-4514-b2b4-e5cfdabcffa1",
"name": "Partner Superteam",
"is_secure_sms_enabled": false,
"street_address": "123 4 Main Street",
"city": "Victoria",
"postal_code": "V8A1B2",
"province_state": "BC",
"country": "CA"
}[
{
"id": string <uuid>,
"name": string,
"business_number": integer,
"accounting_first_name": string,
"accounting_last_name": string,
"accounting_email": string,
"team_first_name": string,
"team_last_name": string,
"team_email": string,
"team_phone_number": string,
"street_address": string,
"city": string,
"province_state": string <two letter code>,
"country": string <ISO Country Code>,
"postal_code": string,
"website": string,
"industry": string,
"active_user_count": integer,
"internal_name": string,
"team_type": string,
}
][
{
"id": "17f225cf-f547-437a-8bd9-36599416f7e9",
"name": "Example Team",
"business_number": 1234,
"accounting_first_name": "Magnus",
"accounting_last_name": "Certn",
"accounting_email": "[email protected]",
"team_first_name": "M",
"team_last_name": "C",
"team_email": "[email protected]",
"team_phone_number": null,
"street_address": "4412 King Alfred Court",
"city": "Victoria",
"province_state": "BC",
"country": "CA",
"postal_code": null,
"website": "https://www.certn.co",
"industry": "Background Checks",
"active_user_count": 7,
"internal_name": "Example Team",
"team_type": "OT"
}
]{
"count": int,
"next": URL,
"previous": URL,
"results": [
{
"id": string <uuid>,
"name": string,
"superteam": string <uuid>,
"pre_pay": boolean
"street_address": string,
"city": string,
"postal_code": string,
"province_state": string,
"other_province_state": string,
"country": string,
"accounting_first_name": string,
"accounting_last_name": string,
"accounting_email": string,
"accounting_email_cc": string,
},
]
}{
"count": 2,
"next": null,
"previous": null,
"results": [
{
"id": "9624967f-993a-46b3-9dc0-4c9f71818f4e",
"name": "Team Name 2",
"superteam": "111cec04-a23c-4eda-81d8-9d32bb369c27",
"pre_pay": false,
"street_address": "123 4 Main Street",
"city": "Victoria",
"postal_code": "V2K9L0",
"province_state": "SK",
"other_province_state": null,
"country": "CA",
"accounting_first_name": "Accounting",
"accounting_last_name": "Name",
"accounting_email": "[email protected]",
"accounting_email_cc": null
},
{
"id": "4c149bff-79b3-48d2-87fc-6212871a9ea4",
"name": "Team Name",
"superteam": "111cec04-a23c-4eda-81d8-9d32bb369c27",
"pre_pay": true,
"street_address": "18 Main Street",
"city": "Saskatoon",
"postal_code": "M2K 0G4",
"province_state": "SK",
"other_province_state": null,
"country": "CA",
"accounting_first_name": "Accounting",
"accounting_last_name": "Name",
"accounting_email": "[email protected]",
"accounting_email_cc": null
}
]
}{
"id": string <uuid>,
"name": string,
"superteam": string <uuid>,
"type": string <Enum>,
"pre_pay": boolean,
"street_address": string,
"city": string,
"postal_code": string,
"province_state": string,
"other_province_state": string,
"country": string,
"accounting_first_name": string,
"accounting_last_name": string,
"accounting_email": string,
"accounting_email_cc": string
}{
"id": "9624967f-993a-46b3-9dc0-4c9f71818f4e",
"name": "Team Name 2",
"superteam": "111cec04-a23c-4eda-81d8-9d32bb369c27",
"type": "HR",
"pre_pay": false,
"street_address": "123 4 Main Street",
"city": "Victoria",
"postal_code": "V2K9L0",
"province_state": "SK",
"other_province_state": null,
"country": "CA",
"accounting_first_name": "Accounting",
"accounting_last_name": "Name",
"accounting_email": "[email protected]",
"accounting_email_cc": null
}{
"id": string <uuid>,
"name": string,
"superteam": string <uuid>,
"type": string <Enum>,
"pre_pay": boolean,
"street_address": string,
"city": string,
"postal_code": string,
"province_state": string,
"other_province_state": string,
"country": string,
"accounting_first_name": string,
"accounting_last_name": string,
"accounting_email": string,
"accounting_email_cc": string
}{
"id": "4c149bff-79b3-48d2-87fc-6212871a9ea4",
"name": "Team Name",
"superteam": "111cec04-a23c-4eda-81d8-9d32bb369c27",
"type": "HR",
"pre_pay": true,
"street_address": "18 Main Street",
"city": "Saskatoon",
"postal_code": "M2K 0G4",
"province_state": "SK",
"other_province_state": null,
"country": "CA",
"accounting_first_name": "Accountant",
"accounting_last_name": "Name",
"accounting_email": "[email protected]",
"accounting_email_cc": ""
}{
"id": string <uuid>,
"name": string,
"superteam": string <uuid>,
"type": string <Enum>
"pre_pay": boolean,
"street_address": string,
"city": string,
"postal_code": string,
"province_state": string,
"other_province_state": string,
"country": string,
"accounting_first_name": string,
"accounting_last_name": string,
"accounting_email": string,
"accounting_email_cc": string
}{
"id": "4c149bff-79b3-48d2-87fc-6212871a9ea4",
"name": "Team Name",
"superteam": "111cec04-a23c-4eda-81d8-9d32bb369c27",
"type": "HR"
"pre_pay": true,
"street_address": "18 Main Street",
"city": "Saskatoon",
"postal_code": "M2K 0G4",
"province_state": "SK",
"other_province_state": null,
"country": "CA",
"accounting_first_name": "Accountant",
"accounting_last_name": "Name",
"accounting_email": "[email protected]",
"accounting_email_cc": ""
}[
{
"id": string,
"name": string,
"version": string,
"description": string,
"type": string < enum > ,
"questions": [{
"id": string,
"index": int,
"question": string,
"type": string < enum > ,
"multiple_choice_options": [
string,
string
],
"multiple_choice_correct_option": string,
"is_verifiable": boolean,
"is_required": boolean
}, {
"id": string,
"index": int,
"question": string,
"type": string < enum > ,
"multiple_choice_options": [
string,
string
],
"multiple_choice_correct_option": string,
"is_verifiable": boolean,
"is_required": boolean
}
]
}
]
[
{
"id": "ae3087ac-bccc-4cf1-b149-30b2a854d210",
"name": "Default",
"version": "0.0.0",
"description": "Default Address Reference Questionnaire",
"type": "ADDRESS",
"questions": [{
"id": "80f2d05c-8ee0-4c8e-a8fe-030403bd3378",
"index": 0,
"question": "Did {{ first_name }} {{ last_name }} rent from {{ start_date }}{% if end_date %} to {{ end_date }}{% endif %}?",
"type": "TRUE_FALSE",
"multiple_choice_options": null,
"multiple_choice_correct_option": null,
"is_verifiable": true,
"is_required": true
}, {
"id": "ae95f70b-24b8-4cc5-97ae-19aeefe732bd",
"index": 1,
"question": "What was the address {{ first_name }} {{ last_name }} lived at?",
"type": "MULTIPLE_CHOICE",
"multiple_choice_options": [
"11012 Main St. Vancouver BC V6T 1X1",
"2023 Alma Ave. Toronto ON M6H 3P2",
"4334 Connolly St. Halifax NS B3L 3M4",
"{{ address }}"
],
"multiple_choice_correct_option": "{{ address }}",
"is_verifiable": true,
"is_required": false
}, {
"id": "be755532-f4a2-4372-bb80-8dca8e9fe4f4",
"index": 2,
"question": "Was {{ first_name }} {{ last_name }} generally a clean and/or organized tenant (1 not clean, 10 very clean)?",
"type": "NUMERIC_RANGE",
"multiple_choice_options": null,
"multiple_choice_correct_option": null,
"is_verifiable": false,
"is_required": false
}, {
"id": "b5b7383e-a165-4722-b09c-082643bb3cfc",
"index": 3,
"question": "How well did {{ first_name }} {{ last_name }} generally get along with property managers and/or fellow residents (1 not well at all, 10 very well)?",
"type": "NUMERIC_RANGE",
"multiple_choice_options": null,
"multiple_choice_correct_option": null,
"is_verifiable": false,
"is_required": false
}, {
"id": "a85394ae-2e49-47a7-a94a-a8b6f6200103",
"index": 4,
"question": "How likely would you be to rent to {{ first_name }} {{ last_name }} again? Are you comfortable recommending {{ first_name }} {{ last_name }} as a tenant (1 not likely, 10 very likely)?",
"type": "NUMERIC_RANGE",
"multiple_choice_options": null,
"multiple_choice_correct_option": null,
"is_verifiable": false,
"is_required": false
}, {
"id": "21c8810b-bb58-4f5b-8445-17526757da73",
"index": 5,
"question": "Did you receive complaints from neighbours with regards to {{ first_name }} {{ last_name }}'s behaviour (1 frequently, 10 never)?",
"type": "NUMERIC_RANGE",
"multiple_choice_options": null,
"multiple_choice_correct_option": null,
"is_verifiable": false,
"is_required": false
}, {
"id": "05b96f0f-fbf0-4378-907f-177c6682a034",
"index": 6,
"question": "Do you have any additional comments you'd like to provide regarding {{ first_name }} {{ last_name }}?",
"type": "LONG_ANSWER",
"multiple_choice_options": null,
"multiple_choice_correct_option": null,
"is_verifiable": false,
"is_required": false
}
]
}
]
[
{
"id": string,
"name": string,
"version": string,
"description": string,
"type": string < enum > ,
"questions": [{
"id": string,
"index": int,
"question": string,
"type": string < enum > ,
"multiple_choice_options": [
string,
string,
string
],
"multiple_choice_correct_option": string,
"is_verifiable": boolean,
"is_required": boolean
}, {
"id": string,
"index": int,
"question": string,
"type": string < enum > ,
"multiple_choice_options": [
string,
string,
string
],
"multiple_choice_correct_option": string,
"is_verifiable": boolean,
"is_required": boolean
}
]
}
][
{
"id": "9550b49d-4069-4b41-8672-b9dc02661db2",
"name": "Default",
"version": "0.0.0",
"description": "Default Employer Reference Questionnaire",
"type": "EMPLOYER",
"questions": [{
"id": "c598a517-b89d-4372-873b-b0f27c8afd27",
"index": 0,
"question": "What was {{ first_name }} {{ last_name }}'s most recent position at {{ company_name }}?",
"type": "MULTIPLE_CHOICE",
"multiple_choice_options": [
"Financial Analyst",
"Receptionist",
"Contractor",
"{{ position }}"
],
"multiple_choice_correct_option": "{{ position }}",
"is_verifiable": true,
"is_required": false
}, {
"id": "0f1aebd6-2286-435f-bd81-f9d8e9a0645d",
"index": 1,
"question": "Did {{ first_name }} {{ last_name }} work at {{ company_name }} from {{ start_date }}{% if end_date %} to {{ end_date }}{% endif %}?",
"type": "TRUE_FALSE",
"multiple_choice_options": null,
"multiple_choice_correct_option": null,
"is_verifiable": true,
"is_required": false
}, {
"id": "4c1d943d-b595-4b7f-9983-be13a72e0003",
"index": 2,
"question": "If given the opportunity, would you hire {{ first_name }} {{ last_name }} again?",
"type": "TRUE_FALSE",
"multiple_choice_options": null,
"multiple_choice_correct_option": null,
"is_verifiable": false,
"is_required": false
}, {
"id": "1fedf7c4-0f7f-4546-841f-c6eb226da2b8",
"index": 3,
"question": "In general, how well did {{ first_name }} {{ last_name }} get along with customers, peers and/or managers (1 not at all, 10 very much so)?",
"type": "NUMERIC_RANGE",
"multiple_choice_options": null,
"multiple_choice_correct_option": null,
"is_verifiable": false,
"is_required": false
}, {
"id": "f408d503-da54-42a4-b29e-d235bf9c890c",
"index": 4,
"question": "In general, did {{ first_name }} {{ last_name }} arrive on time to work (1 not at all, 10 very much so)?",
"type": "NUMERIC_RANGE",
"multiple_choice_options": null,
"multiple_choice_correct_option": null,
"is_verifiable": false,
"is_required": false
}, {
"id": "e6c11a10-b4b8-4f47-a304-edf498e1e50f",
"index": 5,
"question": "How well did {{ first_name }} {{ last_name }} satisfy the requirements of the position (1 not satisfactory, 10 very satisfactory)?",
"type": "NUMERIC_RANGE",
"multiple_choice_options": null,
"multiple_choice_correct_option": null,
"is_verifiable": false,
"is_required": false
}, {
"id": "aea311f1-a98d-42a5-b23b-a092affd275c",
"index": 6,
"question": "Did {{ first_name }} {{ last_name }} go above and beyond what was required without being asked (1 not at all, 10 very much so)?",
"type": "NUMERIC_RANGE",
"multiple_choice_options": null,
"multiple_choice_correct_option": null,
"is_verifiable": false,
"is_required": false
}, {
"id": "cd1d12c0-002b-4090-a758-6904ad7c2bf1",
"index": 7,
"question": "How would you rate {{ first_name }} {{ last_name }}'s ability to handle high pressure or stressful situations (1 not good at all, 10 very good)?",
"type": "NUMERIC_RANGE",
"multiple_choice_options": null,
"multiple_choice_correct_option": null,
"is_verifiable": false,
"is_required": false
}, {
"id": "3dc846b6-773e-4cfe-852d-5eec405c5f5c",
"index": 8,
"question": "Do you have any additional comments you'd like to provide regarding {{ first_name }} {{ last_name }}?",
"type": "LONG_ANSWER",
"multiple_choice_options": null,
"multiple_choice_correct_option": null,
"is_verifiable": false,
"is_required": false
}
]
}
][
{
"id": "9550b49d-4069-4b41-8672-b9dc02661db2",
"name": "Default",
"version": "0.0.0",
"description": "Default Employer Reference Questionnaire",
"type": "EMPLOYER",
"questions": [{
"id": "c598a517-b89d-4372-873b-b0f27c8afd27",
"index": 0,
"question": "What was {{ first_name }} {{ last_name }}'s most recent position at {{ company_name }}?",
"type": "MULTIPLE_CHOICE",
"multiple_choice_options": [
"Financial Analyst",
"Receptionist",
"Contractor",
"{{ position }}"
],
"multiple_choice_correct_option": "{{ position }}",
"is_verifiable": true,
"is_required": false
}, {
"id": "0f1aebd6-2286-435f-bd81-f9d8e9a0645d",
"index": 1,
"question": "Did {{ first_name }} {{ last_name }} work at {{ company_name }} from {{ start_date }}{% if end_date %} to {{ end_date }}{% endif %}?",
"type": "TRUE_FALSE",
"multiple_choice_options": null,
"multiple_choice_correct_option": null,
"is_verifiable": true,
"is_required": false
}, {
"id": "4c1d943d-b595-4b7f-9983-be13a72e0003",
"index": 2,
"question": "If given the opportunity, would you hire {{ first_name }} {{ last_name }} again?",
"type": "TRUE_FALSE",
"multiple_choice_options": null,
"multiple_choice_correct_option": null,
"is_verifiable": false,
"is_required": false
}, {
"id": "1fedf7c4-0f7f-4546-841f-c6eb226da2b8",
"index": 3,
"question": "In general, how well did {{ first_name }} {{ last_name }} get along with customers, peers and/or managers (1 not at all, 10 very much so)?",
"type": "NUMERIC_RANGE",
"multiple_choice_options": null,
"multiple_choice_correct_option": null,
"is_verifiable": false,
"is_required": false
}, {
"id": "f408d503-da54-42a4-b29e-d235bf9c890c",
"index": 4,
"question": "In general, did {{ first_name }} {{ last_name }} arrive on time to work (1 not at all, 10 very much so)?",
"type": "NUMERIC_RANGE",
"multiple_choice_options": null,
"multiple_choice_correct_option": null,
"is_verifiable": false,
"is_required": false
}, {
"id": "e6c11a10-b4b8-4f47-a304-edf498e1e50f",
"index": 5,
"question": "How well did {{ first_name }} {{ last_name }} satisfy the requirements of the position (1 not satisfactory, 10 very satisfactory)?",
"type": "NUMERIC_RANGE",
"multiple_choice_options": null,
"multiple_choice_correct_option": null,
"is_verifiable": false,
"is_required": false
}, {
"id": "aea311f1-a98d-42a5-b23b-a092affd275c",
"index": 6,
"question": "Did {{ first_name }} {{ last_name }} go above and beyond what was required without being asked (1 not at all, 10 very much so)?",
"type": "NUMERIC_RANGE",
"multiple_choice_options": null,
"multiple_choice_correct_option": null,
"is_verifiable": false,
"is_required": false
}, {
"id": "cd1d12c0-002b-4090-a758-6904ad7c2bf1",
"index": 7,
"question": "How would you rate {{ first_name }} {{ last_name }}'s ability to handle high pressure or stressful situations (1 not good at all, 10 very good)?",
"type": "NUMERIC_RANGE",
"multiple_choice_options": null,
"multiple_choice_correct_option": null,
"is_verifiable": false,
"is_required": false
}, {
"id": "3dc846b6-773e-4cfe-852d-5eec405c5f5c",
"index": 8,
"question": "Do you have any additional comments you'd like to provide regarding {{ first_name }} {{ last_name }}?",
"type": "LONG_ANSWER",
"multiple_choice_options": null,
"multiple_choice_correct_option": null,
"is_verifiable": false,
"is_required": false
}
]
}
]{
"count": int,
"next": URL,
"previous": URL,
"results": [
{
"id": string <uuid>,
"first_name": string,
"last_name": string,
"is_active": boolean,
"superteam": string <uuid>,
"team": string <uuid>
}
]
}{
"count": 2,
"next": null,
"previous": null,
"results": [
{
"id": "c1b0c944-551a-46b5-ab88-bdf22f6b06fd",
"first_name": "Joe",
"last_name": "Bidem",
"is_active": false,
"superteam": "aafa6f6b-e394-4514-b2b4-e5cfdabcffa1",
"team": "10626a80-00f2-4e04-9b99-16693f76a6ed"
},
{
"id": "0ec5b68e-890b-4a40-992d-a5cb080abd46",
"first_name": "User Three",
"last_name": "lastname",
"is_active": true,
"superteam": "23554549-b086-4f74-94fe-ccf88e1c643b",
"team": "6aba518e-1d98-4f97-bc77-c5cee59e44cd"
}
]
} {
"id": string <uuid>,
"first_name": string,
"last_name": string,
"email": string,
"language": string <Enum>,
"is_active": boolean,
"superteam": string <uuid>,
"team": string <uuid>
}{
"id": "d04a8ade-4cf1-4bab-9ba5-c82b16c6daca",
"first_name": "John",
"last_name": "Doe",
"email": "[email protected]",
"language": "en",
"is_active": true,
"superteam": "c10f334c-0af8-4fb9-8e42-736f555bb400",
"team": "0de5550b-f93f-4075-a022-52b907592198"
}{
"id": string <uuid>,
"first_name": string,
"last_name": string,
"email": string,
"language": string <Enum>,
"is_active": boolean,
"team": string <uuid>
}{
"id": "1ee80af9-e047-438d-a6d3-a14bbf179cfd",
"first_name": "John",
"last_name": "Doe",
"email": "[email protected]",
"language": "en",
"is_active": true,
"team": "0de5550b-f93f-4075-a022-52b907592198"
}{
"id": string <uuid>,
"first_name": string,
"last_name": string,
"email": string,
"language": string <Enum>,
"is_active": boolean,
"team": string <uuid>
}{
"id": "1ee80af9-e047-438d-a6d3-a14bbf179cfd",
"first_name": "John",
"last_name": "Doe",
"email": "[email protected]",
"language": "en",
"is_active": true,
"team": "0de5550b-f93f-4075-a022-52b907592198"
}{
"id": string <uuid>,
"name": "Package Name",
"superteam": string <uuid>,
"team": string <uuid>,
"request_flags": [
"request_enhanced_identity_verification",
"request_social_media_check",
"request_us_criminal_record_check_tier_1"
],
"settings": {
"requested_countries": [string],
"us_criminal_record_check_years": 7,
"employer_questionaire_id": string <uuid>,
"address_questionaire_id": string <uuid>,
"employer_references_max": int,
"employer_references_min": int,
"address_references_max": int,
"address_references_min": int,
"employment_verification_min": int,
"employment_verification_max": int,
"education_verification_min": int,
"education_verification_max": int,
"credential_verification_min": int,
"credential_verification_max": int,
"credential_verification_level": string <Enum>,
"education_verification_level": string <Enum>,
"employer_references_years": int,
"address_references_years": int,
"employment_verification_years": int,
"address_references_years_or_individually": string <Enum>,
"employer_references_years_or_individually": string <Enum>,
"employment_verification_years_or_individually": string <Enum>,
"purpose_of_check": string <Enum>,
"position_title": string,
"place_of_work": string,
"license_type": string,
"issuing_authority": string,
"reason_for_check": string,
"state_or_territory": string,
"location_of_work": string,
"volunteer_role": string,
"volunteer_organization": string,
"role_or_position_title": string,
"employment_sector": string <Enum>
}
}{
"id": "35e95c65-ed02-4a34-948d-2267568fe69f",
"name": "Package Name",
"superteam": "c10f334c-0af8-4fb9-8e42-736f555bb400",
"team": "0de5550b-f93f-4075-a022-52b907592198",
"request_flags": [
"request_enhanced_identity_verification",
"request_social_media_check",
"request_us_criminal_record_check_tier_1"
],
"settings": {
"requested_countries": [],
"us_criminal_record_check_years": 7,
"employer_questionaire_id": null,
"address_questionaire_id": null,
"employer_references_max": 1,
"employer_references_min": 1,
"address_references_max": 1,
"address_references_min": 1,
"employment_verification_min": 1,
"employment_verification_max": 1,
"education_verification_min": 1,
"education_verification_max": 1,
"credential_verification_min": 1,
"credential_verification_max": 1,
"credential_verification_level": "ALL",
"education_verification_level": "ALL",
"employer_references_years": 3,
"address_references_years": 3,
"employment_verification_years": 3,
"address_references_years_or_individually": "INDIVIDUALLY",
"employer_references_years_or_individually": "INDIVIDUALLY",
"employment_verification_years_or_individually": "INDIVIDUALLY",
"purpose_of_check": null,
"position_title": "",
"place_of_work": "",
"license_type": "",
"issuing_authority": "",
"reason_for_check": "",
"state_or_territory": "",
"location_of_work": "",
"volunteer_role": "",
"volunteer_organization": "",
"role_or_position_title": "",
"employment_sector": ""
}
}{
"id": string <uuid>,
"name": string,
"team": string <uuid>,
"request_flags": [
string
]
"settings": {
object (Package settings)
}
}{
"id": "2ffb4c49-96cf-4b31-8ec3-63ba2dfd3b3b",
"name": "Package Name",
"team": "0de5550b-f93f-4075-a022-52b907592198",
"request_flags": [
"request_enhanced_identity_verification"
]
}{
"id": string <uuid>,
"name": "Package Name",
"superteam": string <uuid>,
"team": string <uuid>,
"request_flags": [
"request_enhanced_identity_verification",
"request_social_media_check",
"request_us_criminal_record_check_tier_1"
],
"settings": {
"requested_countries": [string],
"us_criminal_record_check_years": 7,
"employer_questionaire_id": string <uuid>,
"address_questionaire_id": string <uuid>,
"employer_references_max": int,
"employer_references_min": int,
"address_references_max": int,
"address_references_min": int,
"employment_verification_min": int,
"employment_verification_max": int,
"education_verification_min": int,
"education_verification_max": int,
"credential_verification_min": int,
"credential_verification_max": int,
"credential_verification_level": string <Enum>,
"education_verification_level": string <Enum>,
"employer_references_years": int,
"address_references_years": int,
"employment_verification_years": int,
"address_references_years_or_individually": string <Enum>,
"employer_references_years_or_individually": string <Enum>,
"employment_verification_years_or_individually": string <Enum>,
"purpose_of_check": string <Enum>,
"position_title": string,
"place_of_work": string,
"license_type": string,
"issuing_authority": string,
"reason_for_check": string,
"state_or_territory": string,
"location_of_work": string,
"volunteer_role": string,
"volunteer_organization": string,
"role_or_position_title": string,
"employment_sector": string <Enum>
}
}{
"id": "35e95c65-ed02-4a34-948d-2267568fe69f",
"name": "Package Name",
"superteam": "c10f334c-0af8-4fb9-8e42-736f555bb400",
"team": "0de5550b-f93f-4075-a022-52b907592198",
"request_flags": [
"request_enhanced_identity_verification",
"request_social_media_check",
"request_us_criminal_record_check_tier_1"
],
"settings": {
"requested_countries": [],
"us_criminal_record_check_years": 7,
"employer_questionaire_id": null,
"address_questionaire_id": null,
"employer_references_max": 1,
"employer_references_min": 1,
"address_references_max": 1,
"address_references_min": 1,
"employment_verification_min": 1,
"employment_verification_max": 1,
"education_verification_min": 1,
"education_verification_max": 1,
"credential_verification_min": 1,
"credential_verification_max": 1,
"credential_verification_level": "ALL",
"education_verification_level": "ALL",
"employer_references_years": 3,
"address_references_years": 3,
"employment_verification_years": 3,
"address_references_years_or_individually": "INDIVIDUALLY",
"employer_references_years_or_individually": "INDIVIDUALLY",
"employment_verification_years_or_individually": "INDIVIDUALLY",
"purpose_of_check": null,
"position_title": "",
"place_of_work": "",
"license_type": "",
"issuing_authority": "",
"reason_for_check": "",
"state_or_territory": "",
"location_of_work": "",
"volunteer_role": "",
"volunteer_organization": "",
"role_or_position_title": "",
"employment_sector": ""
}
}How to make requests and generate reports as a human resources client in the Certn API.
{
"id": string <uuid>,
"created": string <date-time>,
"modified": string <date-time>,
"applicant": {
"id": string <uuid>,
"status": string <Enum>,
"first_name": string,
"last_name": string,
"email": string,
"phone_number": {
"phone_type": string <Enum>,
"number": string,
"country": string <ISO Country Code>
}
}
}{
"id": "a123b4cd-1a23-1a23-12a3-a123456b7890",
"created": "2021-11-10T18:20:21Z",
"modified": "2021-11-10T18:20:21Z",
"applicant": {
"id": "a123b4cd-1a23-1a23-12a3-a123456b7890",
"status": "Pending",
"first_name": "string",
"last_name": "string",
"email": "string",
"phone_number": {
"phone_type": "NONE",
"number": "+1 250 555 1234",
"country": "string"
}
}
}{
"id": string <uuid>,
"created": string <date-time>,
"modified": string <date-time>,
"tag": string,
"(request_flags)": boolean
"last_updated": string <date-time>,
"submitted_time": string <date-time>,
"is_submitted": boolean,
"applicant_type": string <Enum>,
"report_status": string <Enum>,
"status": string <Enum>,
"status_label": string <Enum>,
"result": string <Enum>,
"result_label": string <Enum>,
"certn_score": number,
"certn_score_label": string <Enum>,
"applicant_account": {
"id": string,
"email": string
},
"application": {
object (Application)
},
"country": "CA",
"information": {
object (Information)
},
"employment_verification": string <VerificationEnum>,
"education_verification": string <VerificationEnum>,
"credential_verification": string <VerificationEnum>,
"reference_result": {
object (BasePackageResult)
},
"information_result": {
object (BasePackageResult)
},
"risk_result": {
object (RiskResult)
},
"equifax_result": {
object (EquifaxResult)
},
"identity_verified": boolean,
"employment_verified": boolean,
"identity_verification": {
object (Identity Verification)
},
"enhanced_identity_verification": {
object (EnhancedIdentityVerification)
},
"manual_id_verification": {
object (ManualIDVerification)
},
"rcmp_result": {
object (BasePackageResult)
},
"us_criminal_record_check_result": {
object (USCriminalRecordCheckResult)
},
"verification_result": {
object (VerificationResult)
},
"international_criminal_record_check_result": {
object (BasePackageResult)
},
"motor_vehicle_record_result": {
object (BasePackageResult)
},
"salary": number,
"sufficient_salary": boolean,
"high_risk_vulnerable_sector": boolean,
"job_safety_undue_risk": boolean,
"early_termination": number,
"early_termination_label": string <Enum>,
"reliability_risk": number,
"reliability_risk_label": string <Enum>,
"workplace_misconduct": number,
"workplace_misconduct_label": string <Enum>
}{
"id": "a123b4cd-1a23-1a23-12a3-a123456b7890",
"created": "2021-11-10T18:20:21Z",
"modified": "2021-11-10T18:20:21Z",
"tag": "Sub-Client 123",
"request_base": false,
"request_behavioural": false,
"request_softcheck": true,
"request_us_ssn_verification": false,
"request_equifax": true,
"request_identity_verification": false,
"request_enhanced_identity_verification": false,
"request_criminal_record_check": false,
"request_enhanced_criminal_record_check": false,
"request_us_criminal_record_check_tier_1": false,
"request_us_criminal_record_check_tier_2": false,
"request_us_criminal_record_check_tier_3": false,
"request_international_criminal_record_check": false,
"request_motor_vehicle_records": false,
"request_employment_verification": false,
"request_education_verification": false,
"request_credential_verification": false,
"request_employer_references": false,
"request_address_references": false,
"request_employer_phone_references": false,
"request_address_phone_references": false,
"request_instant_verify_employment": false,
"request_instant_verify_education": false,
"request_instant_verify_credential": false,
"last_updated": "2021-11-10T18:20:21Z",
"submitted_time": "2021-11-10T18:20:21Z",
"is_submitted": true,
"applicant_type": "STANDARD",
"report_status": "IN_PROGRESS",
"status": "Pending",
"status_label": "Pending",
"result": "REVIEW",
"result_label": "Review",
"certn_score": 85,
"certn_score_label": "PASS",
"applicant_account": {
"id": "string",
"email": "string"
},
"application": {
"id": "a123b4cd-1a23-1a23-12a3-a123456b7890",
"created": "2021-11-10T18:20:21Z",
"modified": "2021-11-10T18:20:21Z",
"email": "string"
},
"country": "CA",
"information": {
"id": "a123b4cd-1a23-1a23-12a3-a123456b7890",
"created": "2021-11-10T18:20:21Z",
"modified": "2021-11-10T18:20:21Z",
"first_name": "Sebastien",
"middle_name": "Jack Pierre",
"last_name": "Normandin",
"last_name_at_birth": "string",
"former_names": "string",
"alias": "string",
"date_of_birth": "2021-11-10",
"phone_number": "250-123-1234",
"sin_ssn": 123123123,
"gender": "M",
"birth_city": "string",
"birth_province_state": "string",
"birth_other_province_state": "string",
"birth_country": "string",
"license_number": "string",
"license_valid": true,
"license_prov_state": "string",
"license_other_country": true,
"license_type": "CA",
"cover_letter": "string",
"addresses": [
{
"address": "4412 King Alfred Court",
"unit": 100,
"city": "Victoria",
"province_state": "BC",
"country": "CA",
"postal_code": "V8A1B2",
"rent_or_own": "R",
"cost": 0,
"start_date": "2021-11-10",
"end_date": "2021-11-10",
"certn_verification": "VERIFIED",
"verification_notes": "string",
"address_reference": {
"email": {
"address": "[email protected]"
},
"phone_number": {
"phone_type": "NONE",
"number": "+1 250 555 1234",
"country": "string"
},
"name": {
"first_name": "string",
"middle_name": "string",
"last_name": "string"
},
"contact": {
"can_contact": true,
"can_contact_after_date": "2021-11-10"
}
}
}
],
"employers": [
{
"company_name": "string",
"position": "string",
"income": 8500,
"pay_period": "PER_HOUR",
"start_date": "2021-11-10",
"end_date": "2021-11-10",
"certn_verification": "VERIFIED",
"verification_notes": "string",
"employer_reference": {
"email": {
"address": "[email protected]"
},
"phone_number": {
"phone_type": "NONE",
"number": "+1 250 555 1234",
"country": "string"
},
"name": {
"first_name": "string",
"middle_name": "string",
"last_name": "string"
},
"contact": {
"can_contact": true,
"can_contact_after_date": "2021-11-10"
}
}
}
],
"educations": [
{
"institution": "string",
"degree": {
"degree": "2021-11-10",
"verified": true
},
"address": {
"address": "4412 King Alfred Court",
"unit": 100,
"city": "Victoria",
"province_state": "BC",
"country": "CA",
"postal_code": "V8A1B2"
},
"start_date": "2021-11-10",
"end_date": "2021-11-10",
"certn_verification": "VERIFIED",
"verification_notes": "string"
}
],
"convictions": [
{
"offense": 2002,
"date_of_sentence": "2000-01-01T00:00:00.000Z",
"court_location": "Toronto, ON, Canada",
"description": "Robbery; Theft over $200"
}
]
},
"employment_verification": "VERIFIED",
"education_verification": "VERIFIED",
"credential_verification": "VERIFIED",
"reference_result": {
"id": "a123b4cd-1a23-1a23-12a3-a123456b7890",
"status": "ANALYZING",
"status_label": "Analyzing",
"overall_score": "PASS",
"overall_score_label": "Pass",
"red_flags": [
"This may indicate the applicant is high risk."
],
"green_flags": [
"This may indicate the applicant is low risk."
],
"result": "REVIEW",
"result_label": "Review"
},
"information_result": {
"id": "a123b4cd-1a23-1a23-12a3-a123456b7890",
"status": "ANALYZING",
"status_label": "Analyzing",
"overall_score": "PASS",
"overall_score_label": "Pass",
"red_flags": [
"This may indicate the applicant is high risk."
],
"green_flags": [
"This may indicate the applicant is low risk."
],
"result": "REVIEW",
"result_label": "Review"
},
"risk_result": {
"id": "a123b4cd-1a23-1a23-12a3-a123456b7890",
"status": "ANALYZING",
"status_label": "Analyzing",
"overall_score": "PASS",
"overall_score_label": "Pass",
"red_flags": [
"This may indicate the applicant is high risk."
],
"green_flags": [
"This may indicate the applicant is low risk."
],
"result": "REVIEW",
"result_label": "Review",
"risk_evaluations": [
{
"id": "a123b4cd-1a23-1a23-12a3-a123456b7890",
"overall_score": "PASS",
"risk_information_result": {},
"criminal_results": [
{
"confidence": 0,
"confidence_label": "Likely",
"overall_score": "PASS",
"criminal_identity": {
"criminal_cases": [
{
"case_type": "Criminal",
"number": "123asd",
"file_date": "2000-12-12",
"judgment_date": "2000-12-12",
"summary_description": "The case filings summary description",
"full_description": "string",
"notes": "No additional case notes available",
"court": {
"court": "Seattle Superior Court",
"court_type": "Criminal",
"docket_number": "545fjd",
"filed_date": "2000-12-12",
"served_date": "2000-12-12",
"trial_date": "2000-12-12",
"jurisdiction": "Seattle County"
},
"criminal_charges": [
{
"offense_description": "Breach of peace",
"offense_date": "2000-12-12",
"offense_type": "Felony",
"plea": "Not Guilty",
"hearing_date": "2000-12-12",
"hearing_type": "Open court hearing",
"probation": "No probation given",
"community_service": "No community service given",
"sentence_suspended": "None",
"fines": "No fines given",
"fines_paid_status": "Fines not paid",
"fines_paid_date": "2000-12-12",
"cost": "200",
"restitution": "None",
"transferred_jurisdiction": "Transferred from Seattle",
"transferred_case_number": "690330",
"active_warrant": "No active warrant",
"jail_time": "6 months jail time",
"prison_time": "6 months prison time",
"charge_in_progress": "no charge in progress",
"charge": "Vehicular manslaughter two counts",
"charge_level": "Felony",
"charge_class": "None",
"dispositions": [
{
"offense_description": "Speeding",
"offense_type": "Infraction",
"offense_date": "2000-12-12",
"description": "Description of the disposition offense",
"disposition_date": "2000-12-12",
"statue": "20-1212(B)",
"offense_class": "The offense class description",
"final_plea": "Not Guilty",
"disposition_description": "The description of the dispostion"
}
],
"arrests": [
{
"arrest_date": "2000-12-12",
"booking_number": "42069",
"citation_number": "247365",
"arresting_agency": "KERSHAW COUNTY DETENTION CENTER",
"offense_type": "Misdemeanor",
"offense_description": "A description of the arresting offense",
"counts": "Arrest has 6 counts"
}
],
"sentences": [
{
"sentence_type": "Community Service and Fines",
"duration": "6 months",
"amount": "100",
"amount_paid": "50",
"paid": "Half the fine has been paid",
"qualifier": "The sentence has no qualifier information",
"description": "The sentence description",
"effective_date": "2000-12-12",
"appearance_date": "2000-12-12",
"appearance_finding": "There are no appearance findings to detail about the sentence"
}
],
"additional_informations": [
{
"description": "More case information was found.",
"additional_description": "None",
"event_date": "2000-12-12"
}
]
}
]
}
],
"criminal_alerts": [
{
"parent_category": "FRAUD",
"category": "Burglary",
"stage": "Conviction",
"type": "Citation",
"description": "Convicted of burglary",
"date": "2000-12-12",
"parent_category_label": "Fraud"
}
],
"criminal_sources": [
{
"name": "World News",
"url": "worldnews.com",
"date": "2000-12-12",
"format": "Online Media",
"headline": "Burglary Conviction for Area Man",
"publication_source": "World News Conglomerate",
"publisher": "World News"
}
],
"criminal_addresses": [
{
"start_date": "2000-12-12",
"end_date": "2000-12-12",
"unit": "1a",
"address": "123 fort st.",
"city": "Victoria",
"province_state": "BC",
"country": "Canda",
"postal_code": "V8X2C3"
}
],
"criminal_additional_informations": [
{
"aliases": [
"willy will",
"billy bill"
],
"dates_of_birth": [
"2000-12-12"
],
"name": {
"first_name": "string",
"middle_name": "string",
"last_name": "string"
}
}
]
}
}
]
}
]
},
"equifax_result": {
"id": "a123b4cd-1a23-1a23-12a3-a123456b7890",
"status": "ANALYZING",
"status_label": "Analyzing",
"overall_score": "PASS",
"overall_score_label": "Pass",
"red_flags": [
"This may indicate the applicant is high risk."
],
"green_flags": [
"This may indicate the applicant is low risk."
],
"result": "REVIEW",
"result_label": "Review",
"description": "The financial score is based on self-provided information from the applicant and an analysis of the applicant's information available to Certn. This includes a credit check, Equifax record analysis, as well as other important informational data points",
"total_debt": 100,
"upgradable": false,
"trades": [
{
"credit_grantor": "RBC",
"payment_status": "Up to date",
"date_opened": "2000-12-12",
"account_rating": "High",
"date_reported": "2000-12-12",
"account_type": "Revolving",
"high_credit": 2000,
"balance_amount": 1000,
"last_activity_or_payment": "Paid as up to date",
"r_code": "R-1",
"percent_credit_used": 50,
"account_number": "112ksjd",
"past_due_amount": 0,
"payment_term_amount": 120,
"months_reviewed": 15,
"narratives": [
"Account has been paid in full."
]
}
],
"employers": [
{
"employment": "Subject's Current Employer",
"occupation": "Software",
"employer": "Certn",
"city": "Victoria",
"province": "BC",
"verification": true,
"salary": 1000000
}
],
"addresses": [
{
"address": "123 fort st.",
"civic_number": 123,
"street_name": "fort st.",
"city": "Victoria",
"province": "BC"
}
],
"collections": [
{
"date_of_last_payment": "2000-12-12",
"creditor": "Boys Club",
"amount_owed": 10000,
"amount_paid": 50,
"ledger_number": "123aslld",
"date_paid": "2000-12-12T00:00:00.000Z",
"date_reported": "2000-12-12T00:00:00.000Z",
"assigned_date": "2012-12-12T00:00:00.000Z",
"verification_date": "2000-12-12T00:00:00.000Z",
"account_designation": "Individual",
"first_deliquency": "2000-12-12T00:00:00.000Z",
"agency_entity": "GQC123",
"reason": "Credit not paid on in full",
"description": "Parking ticket"
}
],
"deposit_alerts": [
{
"customer_entity": "RBC",
"date_reported": "2000-12-12T00:00:00.000Z",
"account_type": "Business",
"date_opened": "2000-12-12T00:00:00.000Z",
"date_closed": "2000-12-12T00:00:00.000Z",
"date_written_off": "2000-12-12T00:00:00.000Z",
"amount_written_off": 2000,
"alert_status": "High",
"alert_status_date": "2000-12-12T00:00:00.000Z"
}
],
"bankruptcies": [
{
"account_type": "Individual",
"liability_amount": 2000,
"asset_amount": 20000,
"customer": "CRED COUNSELLING SOC",
"case_number_and_trustee": "12312 CE ASSOCIATES",
"filer": "Subject",
"legal_narrative": "No legal information available",
"date_filed": "2000-12-12T00:00:00.000Z",
"intent_or_disposition": "Discharged"
}
],
"judgments": [
{
"plaintiff": "Fred Rickleson",
"defendant": "Rick Frederickson",
"amount": 1000.21,
"date_filed": "2000-12-12T00:00:00.000Z",
"date_satisfied": "2000-12-12T00:00:00.000Z",
"verification_date": "2000-12-12T00:00:00.000Z",
"court_entity": "RBC",
"garnishee": "RBC",
"description": "Fred sued Rick"
}
],
"legal_items": [
{
"case_number": "1232djdsj",
"verification_date": "2000-12-12T00:00:00.000Z",
"update_source_code": "Tape rptd",
"date_filed": "2000-12-12T00:00:00.000Z",
"court_entity": "Toronto small claims",
"status_code": "Satisfied",
"date_satisfied": "2000-12-12T00:00:00.000Z",
"amount": 10000,
"defendant": "John Smithy",
"plaintiff": "Smith Johny",
"lawyer_name_address": "Johnson LLC 123 fort st Victoria",
"legal_item_description": "It was very bad deal"
}
],
"liens": [
{
"amount": 1000,
"date_filed": "1999-12-12T00:00:00.000Z",
"lien_class": "Class A",
"date_released": "1990-12-12T00:00:00.000Z",
"date_verified": "1990-12-12T00:00:00.000Z",
"court_entity": "Superior Court.",
"case_number": "123asda",
"lien_description": "Lien on house."
}
],
"secured_loans": [
{
"date_filed": "1990-12-12T00:00:00.000Z",
"court_entity": "Superior",
"creditor_name_address": "RBC 123 Main st.",
"creditor_industry_code": "620a",
"maturity_date": "1990-12-12T00:00:00.000Z"
}
],
"fraud_warnings": [
{
"product_description": "Fraud warnings are warnings of fraud.",
"message_priority": "Very high",
"message_code": "123a",
"message_description": "High fraud alert for bank fraud"
}
],
"non_sufficient_funds": [
{
"date_reported": "1990-12-12T00:00:00.000Z",
"creditor_entity": "RBC",
"nsfamount": 1000.2,
"details": "No sufficient funds in savings account.",
"verification_date": "1990-12-12T00:00:00.000Z"
}
],
"credit_file_metadatas": [
{
"hit_strength_indicator": "HIT",
"request_number": "123asd",
"address_discrepancy": "No discrepancy found in address",
"customer_number": "123asd",
"report_id": "123asd",
"file_since_date": "1990-12-12T00:00:00.000Z",
"date_of_last_activity": "1990-12-12T00:00:00.000Z",
"date_of_request": "1990-12-12T00:00:00.000Z",
"hit": "Big Hit",
"data_warning_messages": [
"No data warning messages"
],
"card_alert_warning_messages": [
"Credit card on high alert"
],
"alert_indicators": [
"No messages"
]
}
],
"other_incomes": [
{
"date_reported": "1990-12-12T00:00:00.000Z",
"income_source": "RBC",
"amount": 1000000,
"verification_date": "1990-12-12T00:00:00.000Z"
}
],
"consumer_statements": [
{
"date_reported": "1990-12-12T00:00:00.000Z",
"statement": "No consumer statement available."
}
],
"bank_accounts": [
{
"account": "Personal checking",
"date_reported": "1990-12-12T00:00:00.000Z",
"creditor_entity": "RBC",
"account_number": "123asd",
"figure_amount": 1000.12,
"date_opened": "1990-12-12T00:00:00.000Z",
"account_type": "Checking",
"status": "active",
"number_of_nsf": 0
}
],
"local_inquiries": [
{
"inquiry_date": "1990-12-12T00:00:00.000Z",
"customer_name": "Certn"
}
],
"foreign_inquiries": [
{
"inquiry_date": "1990-12-12T00:00:00.000Z",
"city_name_or_inquiry_number": "Seattle",
"inquiry_province": "WA"
}
]
},
"identity_verified": true,
"employment_verified": true,
"identity_verification": {
"id": "a123b4cd-1a23-1a23-12a3-a123456b7890",
"created": "2021-11-10T18:20:21Z",
"modified": "2021-11-10T18:20:21Z",
"status": "A",
"result": "VERIFIED"
},
"enhanced_identity_verification": {
"id": "a123b4cd-1a23-1a23-12a3-a123456b7890",
"created": "2021-11-10T18:20:21Z",
"modified": "2021-11-10T18:20:21Z",
"status": "A",
"result": "VERIFIED"
},
"manual_id_verification": {
"id": "a123b4cd-1a23-1a23-12a3-a123456b7890",
"created": "2021-11-10T18:20:21Z",
"modified": "2021-11-10T18:20:21Z",
"status": "A",
"result": "VERIFIED"
},
"rcmp_result": {
"id": "a123b4cd-1a23-1a23-12a3-a123456b7890",
"status": "ANALYZING",
"status_label": "Analyzing",
"overall_score": "PASS",
"overall_score_label": "Pass",
"red_flags": [
"This may indicate the applicant is high risk."
],
"green_flags": [
"This may indicate the applicant is low risk."
],
"result": "REVIEW",
"result_label": "Review"
},
"us_criminal_record_check_result": {
"id": "a123b4cd-1a23-1a23-12a3-a123456b7890",
"status": "ANALYZING",
"status_label": "Analyzing",
"overall_score": "PASS",
"overall_score_label": "Pass",
"red_flags": [
"This may indicate the applicant is high risk."
],
"green_flags": [
"This may indicate the applicant is low risk."
],
"result": "REVIEW",
"result_label": "Review",
"criminal_cases": [
{
"case_type": "Criminal",
"number": "123asd",
"file_date": "2000-12-12",
"judgment_date": "2000-12-12",
"summary_description": "The case filings summary description",
"full_description": "string",
"notes": "No additional case notes available",
"court": {
"court": "Seattle Superior Court",
"court_type": "Criminal",
"docket_number": "545fjd",
"filed_date": "2000-12-12",
"served_date": "2000-12-12",
"trial_date": "2000-12-12",
"jurisdiction": "Seattle County"
},
"criminal_charges": [
{
"offense_description": "Breach of peace",
"offense_date": "2000-12-12",
"offense_type": "Felony",
"plea": "Not Guilty",
"hearing_date": "2000-12-12",
"hearing_type": "Open court hearing",
"probation": "No probation given",
"community_service": "No community service given",
"sentence_suspended": "None",
"fines": "No fines given",
"fines_paid_status": "Fines not paid",
"fines_paid_date": "2000-12-12",
"cost": "200",
"restitution": "None",
"transferred_jurisdiction": "Transferred from Seattle",
"transferred_case_number": "690330",
"active_warrant": "No active warrant",
"jail_time": "6 months jail time",
"prison_time": "6 months prison time",
"charge_in_progress": "no charge in progress",
"charge": "Vehicular manslaughter two counts",
"charge_level": "Felony",
"charge_class": "None",
"dispositions": [
{
"offense_description": "Speeding",
"offense_type": "Infraction",
"offense_date": "2000-12-12",
"description": "Description of the disposition offense",
"disposition_date": "2000-12-12",
"statue": "20-1212(B)",
"offense_class": "The offense class description",
"final_plea": "Not Guilty",
"disposition_description": "The description of the dispostion"
}
],
"arrests": [
{
"arrest_date": "2000-12-12",
"booking_number": "42069",
"citation_number": "247365",
"arresting_agency": "KERSHAW COUNTY DETENTION CENTER",
"offense_type": "Misdemeanor",
"offense_description": "A description of the arresting offense",
"counts": "Arrest has 6 counts"
}
],
"sentences": [
{
"sentence_type": "Community Service and Fines",
"duration": "6 months",
"amount": "100",
"amount_paid": "50",
"paid": "Half the fine has been paid",
"qualifier": "The sentence has no qualifier information",
"description": "The sentence description",
"effective_date": "2000-12-12",
"appearance_date": "2000-12-12",
"appearance_finding": "There are no appearance findings to detail about the sentence"
}
],
"additional_informations": [
{
"description": "More case information was found.",
"additional_description": "None",
"event_date": "2000-12-12"
}
]
}
]
}
],
"ssn_id_document_reports": [
{
"ssn_result": "Discrepancy",
"ssn_status": "Complete",
"names": [
{
"first_name": "string",
"middle_name": "string",
"last_name": "string"
}
],
"addresses": [
{
"address": "4412 King Alfred Court",
"unit": 100,
"city": "Victoria",
"province_state": "BC",
"country": "CA",
"postal_code": "V8A1B2"
}
],
"id_documents": [
{
"type": "Passport",
"number": "123412kdsdsk",
"issuing_country": "US",
"issuing_province_state": "WA",
"issue_date": "2000-12-12",
"expiry_date": "2000-12-12"
}
],
"dates_of_birth": [
{
"date_of_birth": "2000-12-12"
}
]
}
],
"scan_status": {
"national_sex_offender_registry_scan": "Complete",
"security_watch_list_scan": "Complete",
"fraud_scan": "Complete",
"ofac_global_sanctions_scan": "Complete",
"ssn_verification_scan": "Complete",
"criminal_record_scan": "Complete",
"federal_record_scan": "Incomplete",
"single_state_county_record_scan": "Incomplete",
"all_state_county_record_scan": "Incomplete"
},
"record_check_requests": [
{
"status": "Complete",
"state": "OH",
"county": "Kershaw",
"district": "District 1",
"fips_code": 12312,
"search_type": "Criminal/Court Database Search"
}
]
},
"verification_result": {
"id": "a123b4cd-1a23-1a23-12a3-a123456b7890",
"status": "ANALYZING",
"status_label": "Analyzing",
"overall_score": "PASS",
"overall_score_label": "Pass",
"red_flags": [
"This may indicate the applicant is high risk."
],
"green_flags": [
"This may indicate the applicant is low risk."
],
"result": "REVIEW",
"result_label": "Review",
"employment_verification": "VERIFIED",
"education_verification": "VERIFIED",
"credential_verification": "VERIFIED",
"certn_verification": "VERIFIED",
"employer_verification_results": {
"id": "a123b4cd-1a23-1a23-12a3-a123456b7890",
"status": "ANALYZING",
"status_label": "Analyzing",
"overall_score": "PASS",
"overall_score_label": "Pass",
"red_flags": [
"This may indicate the applicant is high risk."
],
"green_flags": [
"This may indicate the applicant is low risk."
],
"result": "REVIEW",
"result_label": "Review",
"certn_verification": "VERIFIED",
"company_name_verified": false,
"position_name_verified": false,
"income_verified": false,
"employment_dates_verified": true,
"verification_notes": "Verification notes!",
"employer": {
"company_name": "string",
"position": "string",
"income": 8500,
"pay_period": "PER_HOUR",
"start_date": "2021-11-10",
"end_date": "2021-11-10",
"certn_verification": "VERIFIED",
"verification_notes": "string",
"employer_reference": {
"email": {
"address": "[email protected]"
},
"phone_number": {
"phone_type": "NONE",
"number": "+1 250 555 1234",
"country": "string"
},
"name": {
"first_name": "string",
"middle_name": "string",
"last_name": "string"
},
"contact": {
"can_contact": true,
"can_contact_after_date": "2021-11-10"
}
}
}
},
"education_verification_results": {
"id": "a123b4cd-1a23-1a23-12a3-a123456b7890",
"status": "ANALYZING",
"status_label": "Analyzing",
"overall_score": "PASS",
"overall_score_label": "Pass",
"red_flags": [
"This may indicate the applicant is high risk."
],
"green_flags": [
"This may indicate the applicant is low risk."
],
"result": "REVIEW",
"result_label": "Review",
"certn_verification": "VERIFIED",
"specializations_verified": false,
"degree_verified": false,
"institution_verified": false,
"enrolment_dates_verified": true,
"verification_notes": "Verification notes!",
"education": {
"institution": "string",
"degree": {
"degree": "2021-11-10",
"verified": true
},
"address": {
"address": "4412 King Alfred Court",
"unit": 100,
"city": "Victoria",
"province_state": "BC",
"country": "CA",
"postal_code": "V8A1B2"
},
"start_date": "2021-11-10",
"end_date": "2021-11-10",
"certn_verification": "VERIFIED",
"verification_notes": "string"
}
},
"credential_verification_results": {
"id": "a123b4cd-1a23-1a23-12a3-a123456b7890",
"status": "ANALYZING",
"status_label": "Analyzing",
"overall_score": "PASS",
"overall_score_label": "Pass",
"red_flags": [
"This may indicate the applicant is high risk."
],
"green_flags": [
"This may indicate the applicant is low risk."
],
"result": "REVIEW",
"result_label": "Review",
"certn_verification": "VERIFIED",
"certification_date_verified": false,
"certification_verified": false,
"institution_verified": true,
"verification_notes": "Verification notes!",
"credential": {
"description": "string",
"institution": "string",
"certification": "string",
"date_of_certification": "2021-11-10",
"current": true,
"certn_verification": "VERIFIED",
"verification_notes": "string"
}
}
},
"international_criminal_record_check_result": {
"id": "a123b4cd-1a23-1a23-12a3-a123456b7890",
"status": "ANALYZING",
"status_label": "Analyzing",
"overall_score": "PASS",
"overall_score_label": "Pass",
"red_flags": [
"This may indicate the applicant is high risk."
],
"green_flags": [
"This may indicate the applicant is low risk."
],
"result": "REVIEW",
"result_label": "Review"
},
"motor_vehicle_record_result": {
"id": "a123b4cd-1a23-1a23-12a3-a123456b7890",
"status": "ANALYZING",
"status_label": "Analyzing",
"overall_score": "PASS",
"overall_score_label": "Pass",
"red_flags": [
"This may indicate the applicant is high risk."
],
"green_flags": [
"This may indicate the applicant is low risk."
],
"result": "REVIEW",
"result_label": "Review"
},
"salary": 0,
"sufficient_salary": true,
"high_risk_vulnerable_sector": true,
"job_safety_undue_risk": true,
"early_termination": 0,
"early_termination_label": "High",
"reliability_risk": 0,
"reliability_risk_label": "High",
"workplace_misconduct": 0,
"workplace_misconduct_label": "High"
}{
"id": string < uuid > ,
"created": string < date - time > ,
"modified": string < date - time > ,
"tag": string,
"(request_flags)": boolean
"last_updated": string < date - time > ,
"submitted_time": string < date - time > ,
"is_submitted": boolean,
"applicant_type": string < Enum > ,
"report_status": string < Enum > ,
"status": string < Enum > ,
"status_label": string < Enum > ,
"result": string < Enum > ,
"result_label": string < Enum > ,
"certn_score": number,
"certn_score_label": string < Enum > ,
"applicant_account": {
"id": string,
"email": string
},
"application": {
object(Application)
},
"country": "CA",
"information": {
object(Information)
},
"employment_verification": string < VerificationEnum > ,
"education_verification": string < VerificationEnum > ,
"credential_verification": string < VerificationEnum > ,
"reference_result": {
object(BasePackageResult)
},
"information_result": {
object(BasePackageResult)
},
"risk_result": {
object(RiskResult)
},
"equifax_result": {
object(EquifaxResult)
},
"identity_verified": boolean,
"employment_verified": boolean,
"identity_verification": {
object(Identity Verification)
},
"enhanced_identity_verification": {
object(EnhancedIdentityVerification)
},
"manual_id_verification": {
object(ManualIDVerification)
},
"rcmp_result": {
object(BasePackageResult)
},
"us_criminal_record_check_result": {
object(USCriminalRecordCheckResult)
},
"verification_result": {
object(VerificationResult)
},
"international_criminal_record_check_result": {
object(BasePackageResult)
},
"motor_vehicle_record_result": {
object(BasePackageResult)
},
"salary": number,
"sufficient_salary": boolean,
"high_risk_vulnerable_sector": boolean,
"job_safety_undue_risk": boolean,
"early_termination": number,
"early_termination_label": string < Enum > ,
"reliability_risk": number,
"reliability_risk_label": string < Enum > ,
"workplace_misconduct": number,
"workplace_misconduct_label": string < Enum >
}
{
"id": "a123b4cd-1a23-1a23-12a3-a123456b7890",
"created": "2021-11-10T18:20:22Z",
"modified": "2021-11-10T18:20:22Z",
"tag": "Sub-Client 123",
"request_base": false,
"request_behavioural": false,
"request_softcheck": true,
"request_us_ssn_verification": false,
"request_equifax": true,
"request_identity_verification": false,
"request_enhanced_identity_verification": false,
"request_criminal_record_check": false,
"request_enhanced_criminal_record_check": false,
"request_us_criminal_record_check_tier_1": false,
"request_us_criminal_record_check_tier_2": false,
"request_us_criminal_record_check_tier_3": false,
"request_international_criminal_record_check": false,
"request_motor_vehicle_records": false,
"request_employment_verification": false,
"request_education_verification": false,
"request_credential_verification": false,
"request_employer_references": false,
"request_address_references": false,
"request_employer_phone_references": false,
"request_address_phone_references": false,
"request_instant_verify_employment": false,
"request_instant_verify_education": false,
"request_instant_verify_credential": false,
"last_updated": "2021-11-10T18:20:22Z",
"submitted_time": "2021-11-10T18:20:22Z",
"is_submitted": true,
"applicant_type": "STANDARD",
"report_status": "IN_PROGRESS",
"status": "Pending",
"status_label": "Pending",
"result": "REVIEW",
"result_label": "Review",
"certn_score": 85,
"certn_score_label": "PASS",
"applicant_account": {
"id": "string",
"email": "string"
},
"application": {
"id": "a123b4cd-1a23-1a23-12a3-a123456b7890",
"created": "2021-11-10T18:20:22Z",
"modified": "2021-11-10T18:20:22Z",
"email": "string"
},
"country": "CA",
"information": {
"id": "a123b4cd-1a23-1a23-12a3-a123456b7890",
"created": "2021-11-10T18:20:22Z",
"modified": "2021-11-10T18:20:22Z",
"first_name": "Sebastien",
"middle_name": "Jack Pierre",
"last_name": "Normandin",
"last_name_at_birth": "string",
"former_names": "string",
"alias": "string",
"date_of_birth": "2021-11-10",
"phone_number": "250-123-1234",
"sin_ssn": 123123123,
"gender": "M",
"birth_city": "string",
"birth_province_state": "string",
"birth_other_province_state": "string",
"birth_country": "string",
"license_number": "string",
"license_valid": true,
"license_prov_state": "string",
"license_other_country": true,
"license_type": "CA",
"cover_letter": "string",
"addresses": [{
"address": "4412 King Alfred Court",
"unit": 100,
"city": "Victoria",
"province_state": "BC",
"country": "CA",
"postal_code": "V8A1B2",
"rent_or_own": "R",
"cost": 0,
"start_date": "2021-11-10",
"end_date": "2021-11-10",
"certn_verification": "VERIFIED",
"verification_notes": "string",
"address_reference": {
"email": {
"address": "[email protected]"
},
"phone_number": {
"phone_type": "NONE",
"number": "+1 250 555 1234",
"country": "string"
},
"name": {
"first_name": "string",
"middle_name": "string",
"last_name": "string"
},
"contact": {
"can_contact": true,
"can_contact_after_date": "2021-11-10"
}
}
}
],
"employers": [{
"company_name": "string",
"position": "string",
"income": 8500,
"pay_period": "PER_HOUR",
"start_date": "2021-11-10",
"end_date": "2021-11-10",
"certn_verification": "VERIFIED",
"verification_notes": "string",
"employer_reference": {
"email": {
"address": "[email protected]"
},
"phone_number": {
"phone_type": "NONE",
"number": "+1 250 555 1234",
"country": "string"
},
"name": {
"first_name": "string",
"middle_name": "string",
"last_name": "string"
},
"contact": {
"can_contact": true,
"can_contact_after_date": "2021-11-10"
}
}
}
],
"educations": [{
"institution": "string",
"degree": {
"degree": "2021-11-10",
"verified": true
},
"address": {
"address": "4412 King Alfred Court",
"unit": 100,
"city": "Victoria",
"province_state": "BC",
"country": "CA",
"postal_code": "V8A1B2"
},
"start_date": "2021-11-10",
"end_date": "2021-11-10",
"certn_verification": "VERIFIED",
"verification_notes": "string"
}
],
"convictions": [{
"offense": 2002,
"date_of_sentence": "2000-01-01T00:00:00.000Z",
"court_location": "Toronto, ON, Canada",
"description": "Robbery; Theft over $200"
}
]
},
"employment_verification": "VERIFIED",
"education_verification": "VERIFIED",
"credential_verification": "VERIFIED",
"reference_result": {
"id": "a123b4cd-1a23-1a23-12a3-a123456b7890",
"status": "ANALYZING",
"status_label": "Analyzing",
"overall_score": "PASS",
"overall_score_label": "Pass",
"red_flags": [
"This may indicate the applicant is high risk."
],
"green_flags": [
"This may indicate the applicant is low risk."
],
"result": "REVIEW",
"result_label": "Review"
},
"information_result": {
"id": "a123b4cd-1a23-1a23-12a3-a123456b7890",
"status": "ANALYZING",
"status_label": "Analyzing",
"overall_score": "PASS",
"overall_score_label": "Pass",
"red_flags": [
"This may indicate the applicant is high risk."
],
"green_flags": [
"This may indicate the applicant is low risk."
],
"result": "REVIEW",
"result_label": "Review"
},
"behavioural_result": {
"id": "a123b4cd-1a23-1a23-12a3-a123456b7890",
"status": "ANALYZING",
"status_label": "Analyzing",
"overall_score": "PASS",
"overall_score_label": "Pass",
"red_flags": [
"This may indicate the applicant is high risk."
],
"green_flags": [
"This may indicate the applicant is low risk."
],
"result": "REVIEW",
"result_label": "Review"
},
"risk_result": {
"id": "a123b4cd-1a23-1a23-12a3-a123456b7890",
"status": "ANALYZING",
"status_label": "Analyzing",
"overall_score": "PASS",
"overall_score_label": "Pass",
"red_flags": [
"This may indicate the applicant is high risk."
],
"green_flags": [
"This may indicate the applicant is low risk."
],
"result": "REVIEW",
"result_label": "Review",
"risk_evaluations": [{
"id": "a123b4cd-1a23-1a23-12a3-a123456b7890",
"overall_score": "PASS",
"risk_information_result": {},
"criminal_results": [{
"confidence": 0,
"confidence_label": "Likely",
"overall_score": "PASS",
"criminal_identity": {
"criminal_cases": [{
"case_type": "Criminal",
"number": "123asd",
"file_date": "2000-12-12",
"judgment_date": "2000-12-12",
"summary_description": "The case filings summary description",
"full_description": "string",
"notes": "No additional case notes available",
"court": {
"court": "Seattle Superior Court",
"court_type": "Criminal",
"docket_number": "545fjd",
"filed_date": "2000-12-12",
"served_date": "2000-12-12",
"trial_date": "2000-12-12",
"jurisdiction": "Seattle County"
},
"criminal_charges": [{
"offense_description": "Breach of peace",
"offense_date": "2000-12-12",
"offense_type": "Felony",
"plea": "Not Guilty",
"hearing_date": "2000-12-12",
"hearing_type": "Open court hearing",
"probation": "No probation given",
"community_service": "No community service given",
"sentence_suspended": "None",
"fines": "No fines given",
"fines_paid_status": "Fines not paid",
"fines_paid_date": "2000-12-12",
"cost": "200",
"restitution": "None",
"transferred_jurisdiction": "Transferred from Seattle",
"transferred_case_number": "690330",
"active_warrant": "No active warrant",
"jail_time": "6 months jail time",
"prison_time": "6 months prison time",
"charge_in_progress": "no charge in progress",
"charge": "Vehicular manslaughter two counts",
"charge_level": "Felony",
"charge_class": "None",
"dispositions": [{
"offense_description": "Speeding",
"offense_type": "Infraction",
"offense_date": "2000-12-12",
"description": "Description of the disposition offense",
"disposition_date": "2000-12-12",
"statue": "20-1212(B)",
"offense_class": "The offense class description",
"final_plea": "Not Guilty",
"disposition_description": "The description of the dispostion"
}
],
"arrests": [{
"arrest_date": "2000-12-12",
"booking_number": "42069",
"citation_number": "247365",
"arresting_agency": "KERSHAW COUNTY DETENTION CENTER",
"offense_type": "Misdemeanor",
"offense_description": "A description of the arresting offense",
"counts": "Arrest has 6 counts"
}
],
"sentences": [{
"sentence_type": "Community Service and Fines",
"duration": "6 months",
"amount": "100",
"amount_paid": "50",
"paid": "Half the fine has been paid",
"qualifier": "The sentence has no qualifier information",
"description": "The sentence description",
"effective_date": "2000-12-12",
"appearance_date": "2000-12-12",
"appearance_finding": "There are no appearance findings to detail about the sentence"
}
],
"additional_informations": [{
"description": "More case information was found.",
"additional_description": "None",
"event_date": "2000-12-12"
}
]
}
]
}
],
"criminal_alerts": [{
"parent_category": "FRAUD",
"category": "Burglary",
"stage": "Conviction",
"type": "Citation",
"description": "Convicted of burglary",
"date": "2000-12-12",
"parent_category_label": "Fraud"
}
],
"criminal_sources": [{
"name": "World News",
"url": "worldnews.com",
"date": "2000-12-12",
"format": "Online Media",
"headline": "Burglary Conviction for Area Man",
"publication_source": "World News Conglomerate",
"publisher": "World News"
}
],
"criminal_addresses": [{
"start_date": "2000-12-12",
"end_date": "2000-12-12",
"unit": "1a",
"address": "123 fort st.",
"city": "Victoria",
"province_state": "BC",
"country": "Canda",
"postal_code": "V8X2C3"
}
],
"criminal_additional_informations": [{
"aliases": [
"willy will",
"billy bill"
],
"dates_of_birth": [
"2000-12-12"
],
"name": {
"first_name": "string",
"middle_name": "string",
"last_name": "string"
}
}
]
}
}
]
}
]
},
"equifax_result": {
"id": "a123b4cd-1a23-1a23-12a3-a123456b7890",
"status": "ANALYZING",
"status_label": "Analyzing",
"overall_score": "PASS",
"overall_score_label": "Pass",
"red_flags": [
"This may indicate the applicant is high risk."
],
"green_flags": [
"This may indicate the applicant is low risk."
],
"result": "REVIEW",
"result_label": "Review",
"description": "The financial score is based on self-provided information from the applicant and an analysis of the applicant's information available to Certn. This includes a credit check, Equifax record analysis, as well as other important informational data points",
"total_debt": 100,
"upgradable": false,
"trades": [{
"credit_grantor": "RBC",
"payment_status": "Up to date",
"date_opened": "2000-12-12",
"account_rating": "High",
"date_reported": "2000-12-12",
"account_type": "Revolving",
"high_credit": 2000,
"balance_amount": 1000,
"last_activity_or_payment": "Paid as up to date",
"r_code": "R-1",
"percent_credit_used": 50,
"account_number": "112ksjd",
"past_due_amount": 0,
"payment_term_amount": 120,
"months_reviewed": 15,
"narratives": [
"Account has been paid in full."
]
}
],
"employers": [{
"employment": "Subject's Current Employer",
"occupation": "Software",
"employer": "Certn",
"city": "Victoria",
"province": "BC",
"verification": true,
"salary": 1000000
}
],
"addresses": [{
"address": "123 fort st.",
"civic_number": 123,
"street_name": "fort st.",
"city": "Victoria",
"province": "BC"
}
],
"collections": [{
"date_of_last_payment": "2000-12-12",
"creditor": "Boys Club",
"amount_owed": 10000,
"amount_paid": 50,
"ledger_number": "123aslld",
"date_paid": "2000-12-12T00:00:00.000Z",
"date_reported": "2000-12-12T00:00:00.000Z",
"assigned_date": "2012-12-12T00:00:00.000Z",
"verification_date": "2000-12-12T00:00:00.000Z",
"account_designation": "Individual",
"first_deliquency": "2000-12-12T00:00:00.000Z",
"agency_entity": "GQC123",
"reason": "Credit not paid on in full",
"description": "Parking ticket"
}
],
"deposit_alerts": [{
"customer_entity": "RBC",
"date_reported": "2000-12-12T00:00:00.000Z",
"account_type": "Business",
"date_opened": "2000-12-12T00:00:00.000Z",
"date_closed": "2000-12-12T00:00:00.000Z",
"date_written_off": "2000-12-12T00:00:00.000Z",
"amount_written_off": 2000,
"alert_status": "High",
"alert_status_date": "2000-12-12T00:00:00.000Z"
}
],
"bankruptcies": [{
"account_type": "Individual",
"liability_amount": 2000,
"asset_amount": 20000,
"customer": "CRED COUNSELLING SOC",
"case_number_and_trustee": "12312 CE ASSOCIATES",
"filer": "Subject",
"legal_narrative": "No legal information available",
"date_filed": "2000-12-12T00:00:00.000Z",
"intent_or_disposition": "Discharged"
}
],
"judgments": [{
"plaintiff": "Fred Rickleson",
"defendant": "Rick Frederickson",
"amount": 1000.21,
"date_filed": "2000-12-12T00:00:00.000Z",
"date_satisfied": "2000-12-12T00:00:00.000Z",
"verification_date": "2000-12-12T00:00:00.000Z",
"court_entity": "RBC",
"garnishee": "RBC",
"description": "Fred sued Rick"
}
],
"legal_items": [{
"case_number": "1232djdsj",
"verification_date": "2000-12-12T00:00:00.000Z",
"update_source_code": "Tape rptd",
"date_filed": "2000-12-12T00:00:00.000Z",
"court_entity": "Toronto small claims",
"status_code": "Satisfied",
"date_satisfied": "2000-12-12T00:00:00.000Z",
"amount": 10000,
"defendant": "John Smithy",
"plaintiff": "Smith Johny",
"lawyer_name_address": "Johnson LLC 123 fort st Victoria",
"legal_item_description": "It was very bad deal"
}
],
"liens": [{
"amount": 1000,
"date_filed": "1999-12-12T00:00:00.000Z",
"lien_class": "Class A",
"date_released": "1990-12-12T00:00:00.000Z",
"date_verified": "1990-12-12T00:00:00.000Z",
"court_entity": "Superior Court.",
"case_number": "123asda",
"lien_description": "Lien on house."
}
],
"secured_loans": [{
"date_filed": "1990-12-12T00:00:00.000Z",
"court_entity": "Superior",
"creditor_name_address": "RBC 123 Main st.",
"creditor_industry_code": "620a",
"maturity_date": "1990-12-12T00:00:00.000Z"
}
],
"fraud_warnings": [{
"product_description": "Fraud warnings are warnings of fraud.",
"message_priority": "Very high",
"message_code": "123a",
"message_description": "High fraud alert for bank fraud"
}
],
"non_sufficient_funds": [{
"date_reported": "1990-12-12T00:00:00.000Z",
"creditor_entity": "RBC",
"nsfamount": 1000.2,
"details": "No sufficient funds in savings account.",
"verification_date": "1990-12-12T00:00:00.000Z"
}
],
"credit_file_metadatas": [{
"hit_strength_indicator": "HIT",
"request_number": "123asd",
"address_discrepancy": "No discrepancy found in address",
"customer_number": "123asd",
"report_id": "123asd",
"file_since_date": "1990-12-12T00:00:00.000Z",
"date_of_last_activity": "1990-12-12T00:00:00.000Z",
"date_of_request": "1990-12-12T00:00:00.000Z",
"hit": "Big Hit",
"data_warning_messages": [
"No data warning messages"
],
"card_alert_warning_messages": [
"Credit card on high alert"
],
"alert_indicators": [
"No messages"
]
}
],
"other_incomes": [{
"date_reported": "1990-12-12T00:00:00.000Z",
"income_source": "RBC",
"amount": 1000000,
"verification_date": "1990-12-12T00:00:00.000Z"
}
],
"consumer_statements": [{
"date_reported": "1990-12-12T00:00:00.000Z",
"statement": "No consumer statement available."
}
],
"bank_accounts": [{
"account": "Personal checking",
"date_reported": "1990-12-12T00:00:00.000Z",
"creditor_entity": "RBC",
"account_number": "123asd",
"figure_amount": 1000.12,
"date_opened": "1990-12-12T00:00:00.000Z",
"account_type": "Checking",
"status": "active",
"number_of_nsf": 0
}
],
"local_inquiries": [{
"inquiry_date": "1990-12-12T00:00:00.000Z",
"customer_name": "Certn"
}
],
"foreign_inquiries": [{
"inquiry_date": "1990-12-12T00:00:00.000Z",
"city_name_or_inquiry_number": "Seattle",
"inquiry_province": "WA"
}
]
},
"identity_verified": true,
"employment_verified": true,
"identity_verification": {
"id": "a123b4cd-1a23-1a23-12a3-a123456b7890",
"created": "2021-11-10T18:20:22Z",
"modified": "2021-11-10T18:20:22Z",
"status": "A",
"result": "VERIFIED"
},
"enhanced_identity_verification": {
"id": "a123b4cd-1a23-1a23-12a3-a123456b7890",
"created": "2021-11-10T18:20:22Z",
"modified": "2021-11-10T18:20:22Z",
"status": "A",
"result": "VERIFIED"
},
"manual_id_verification": {
"id": "a123b4cd-1a23-1a23-12a3-a123456b7890",
"created": "2021-11-10T18:20:22Z",
"modified": "2021-11-10T18:20:22Z",
"status": "A",
"result": "VERIFIED"
},
"rcmp_result": {
"id": "a123b4cd-1a23-1a23-12a3-a123456b7890",
"status": "ANALYZING",
"status_label": "Analyzing",
"overall_score": "PASS",
"overall_score_label": "Pass",
"red_flags": [
"This may indicate the applicant is high risk."
],
"green_flags": [
"This may indicate the applicant is low risk."
],
"result": "REVIEW",
"result_label": "Review"
},
"us_criminal_record_check_result": {
"id": "a123b4cd-1a23-1a23-12a3-a123456b7890",
"status": "ANALYZING",
"status_label": "Analyzing",
"overall_score": "PASS",
"overall_score_label": "Pass",
"red_flags": [
"This may indicate the applicant is high risk."
],
"green_flags": [
"This may indicate the applicant is low risk."
],
"result": "REVIEW",
"result_label": "Review",
"criminal_cases": [{
"case_type": "Criminal",
"number": "123asd",
"file_date": "2000-12-12",
"judgment_date": "2000-12-12",
"summary_description": "The case filings summary description",
"full_description": "string",
"notes": "No additional case notes available",
"court": {
"court": "Seattle Superior Court",
"court_type": "Criminal",
"docket_number": "545fjd",
"filed_date": "2000-12-12",
"served_date": "2000-12-12",
"trial_date": "2000-12-12",
"jurisdiction": "Seattle County"
},
"criminal_charges": [{
"offense_description": "Breach of peace",
"offense_date": "2000-12-12",
"offense_type": "Felony",
"plea": "Not Guilty",
"hearing_date": "2000-12-12",
"hearing_type": "Open court hearing",
"probation": "No probation given",
"community_service": "No community service given",
"sentence_suspended": "None",
"fines": "No fines given",
"fines_paid_status": "Fines not paid",
"fines_paid_date": "2000-12-12",
"cost": "200",
"restitution": "None",
"transferred_jurisdiction": "Transferred from Seattle",
"transferred_case_number": "690330",
"active_warrant": "No active warrant",
"jail_time": "6 months jail time",
"prison_time": "6 months prison time",
"charge_in_progress": "no charge in progress",
"charge": "Vehicular manslaughter two counts",
"charge_level": "Felony",
"charge_class": "None",
"dispositions": [{
"offense_description": "Speeding",
"offense_type": "Infraction",
"offense_date": "2000-12-12",
"description": "Description of the disposition offense",
"disposition_date": "2000-12-12",
"statue": "20-1212(B)",
"offense_class": "The offense class description",
"final_plea": "Not Guilty",
"disposition_description": "The description of the dispostion"
}
],
"arrests": [{
"arrest_date": "2000-12-12",
"booking_number": "42069",
"citation_number": "247365",
"arresting_agency": "KERSHAW COUNTY DETENTION CENTER",
"offense_type": "Misdemeanor",
"offense_description": "A description of the arresting offense",
"counts": "Arrest has 6 counts"
}
],
"sentences": [{
"sentence_type": "Community Service and Fines",
"duration": "6 months",
"amount": "100",
"amount_paid": "50",
"paid": "Half the fine has been paid",
"qualifier": "The sentence has no qualifier information",
"description": "The sentence description",
"effective_date": "2000-12-12",
"appearance_date": "2000-12-12",
"appearance_finding": "There are no appearance findings to detail about the sentence"
}
],
"additional_informations": [{
"description": "More case information was found.",
"additional_description": "None",
"event_date": "2000-12-12"
}
]
}
]
}
],
"ssn_id_document_reports": [{
"ssn_result": "Discrepancy",
"ssn_status": "Complete",
"names": [{
"first_name": "string",
"middle_name": "string",
"last_name": "string"
}
],
"addresses": [{
"address": "4412 King Alfred Court",
"unit": 100,
"city": "Victoria",
"province_state": "BC",
"country": "CA",
"postal_code": "V8A1B2"
}
],
"id_documents": [{
"type": "Passport",
"number": "123412kdsdsk",
"issuing_country": "US",
"issuing_province_state": "WA",
"issue_date": "2000-12-12",
"expiry_date": "2000-12-12"
}
],
"dates_of_birth": [{
"date_of_birth": "2000-12-12"
}
]
}
],
"scan_status": {
"national_sex_offender_registry_scan": "Complete",
"security_watch_list_scan": "Complete",
"fraud_scan": "Complete",
"ofac_global_sanctions_scan": "Complete",
"ssn_verification_scan": "Complete",
"criminal_record_scan": "Complete",
"federal_record_scan": "Incomplete",
"single_state_county_record_scan": "Incomplete",
"all_state_county_record_scan": "Incomplete"
},
"record_check_requests": [{
"status": "Complete",
"state": "OH",
"county": "Kershaw",
"district": "District 1",
"fips_code": 12312,
"search_type": "Criminal/Court Database Search"
}
]
},
"verification_result": {
"id": "a123b4cd-1a23-1a23-12a3-a123456b7890",
"status": "ANALYZING",
"status_label": "Analyzing",
"overall_score": "PASS",
"overall_score_label": "Pass",
"red_flags": [
"This may indicate the applicant is high risk."
],
"green_flags": [
"This may indicate the applicant is low risk."
],
"result": "REVIEW",
"result_label": "Review",
"employment_verification": "VERIFIED",
"education_verification": "VERIFIED",
"credential_verification": "VERIFIED",
"certn_verification": "VERIFIED",
"employer_verification_results": {
"id": "a123b4cd-1a23-1a23-12a3-a123456b7890",
"status": "ANALYZING",
"status_label": "Analyzing",
"overall_score": "PASS",
"overall_score_label": "Pass",
"red_flags": [
"This may indicate the applicant is high risk."
],
"green_flags": [
"This may indicate the applicant is low risk."
],
"result": "REVIEW",
"result_label": "Review",
"certn_verification": "VERIFIED",
"company_name_verified": false,
"position_name_verified": false,
"income_verified": false,
"employment_dates_verified": true,
"verification_notes": "Verification notes!",
"employer": {
"company_name": "string",
"position": "string",
"income": 8500,
"pay_period": "PER_HOUR",
"start_date": "2021-11-10",
"end_date": "2021-11-10",
"certn_verification": "VERIFIED",
"verification_notes": "string",
"employer_reference": {
"email": {
"address": "[email protected]"
},
"phone_number": {
"phone_type": "NONE",
"number": "+1 250 555 1234",
"country": "string"
},
"name": {
"first_name": "string",
"middle_name": "string",
"last_name": "string"
},
"contact": {
"can_contact": true,
"can_contact_after_date": "2021-11-10"
}
}
}
},
"education_verification_results": {
"id": "a123b4cd-1a23-1a23-12a3-a123456b7890",
"status": "ANALYZING",
"status_label": "Analyzing",
"overall_score": "PASS",
"overall_score_label": "Pass",
"red_flags": [
"This may indicate the applicant is high risk."
],
"green_flags": [
"This may indicate the applicant is low risk."
],
"result": "REVIEW",
"result_label": "Review",
"certn_verification": "VERIFIED",
"specializations_verified": false,
"degree_verified": false,
"institution_verified": false,
"enrolment_dates_verified": true,
"verification_notes": "Verification notes!",
"education": {
"institution": "string",
"degree": {
"degree": "2021-11-10",
"verified": true
},
"address": {
"address": "4412 King Alfred Court",
"unit": 100,
"city": "Victoria",
"province_state": "BC",
"country": "CA",
"postal_code": "V8A1B2"
},
"start_date": "2021-11-10",
"end_date": "2021-11-10",
"certn_verification": "VERIFIED",
"verification_notes": "string"
}
},
"credential_verification_results": {
"id": "a123b4cd-1a23-1a23-12a3-a123456b7890",
"status": "ANALYZING",
"status_label": "Analyzing",
"overall_score": "PASS",
"overall_score_label": "Pass",
"red_flags": [
"This may indicate the applicant is high risk."
],
"green_flags": [
"This may indicate the applicant is low risk."
],
"result": "REVIEW",
"result_label": "Review",
"certn_verification": "VERIFIED",
"certification_date_verified": false,
"certification_verified": false,
"institution_verified": true,
"verification_notes": "Verification notes!",
"credential": {
"description": "string",
"institution": "string",
"certification": "string",
"date_of_certification": "2021-11-10",
"current": true,
"certn_verification": "VERIFIED",
"verification_notes": "string"
}
}
},
"international_criminal_record_check_result": {
"id": "a123b4cd-1a23-1a23-12a3-a123456b7890",
"status": "ANALYZING",
"status_label": "Analyzing",
"overall_score": "PASS",
"overall_score_label": "Pass",
"red_flags": [
"This may indicate the applicant is high risk."
],
"green_flags": [
"This may indicate the applicant is low risk."
],
"result": "REVIEW",
"result_label": "Review"
},
"motor_vehicle_record_result": {
"id": "a123b4cd-1a23-1a23-12a3-a123456b7890",
"status": "ANALYZING",
"status_label": "Analyzing",
"overall_score": "PASS",
"overall_score_label": "Pass",
"red_flags": [
"This may indicate the applicant is high risk."
],
"green_flags": [
"This may indicate the applicant is low risk."
],
"result": "REVIEW",
"result_label": "Review"
},
"instant_verify_result": {
"instant_verify_employment": {
"id": "a123b4cd-1a23-1a23-12a3-a123456b7890",
"status": "ANALYZING",
"status_label": "Analyzing",
"overall_score": "PASS",
"overall_score_label": "Pass",
"red_flags": [
"This may indicate the applicant is high risk."
],
"green_flags": [
"This may indicate the applicant is low risk."
],
"result": "REVIEW",
"result_label": "Review",
"instant_verify_employment_result": [{
"verification_status": "VERIFIED",
"verifications_scale": 0.8,
"label_source_data": "Tiger Keeping",
"label_verifier_data": "Keeping of Tigers",
"org_source_data": "The Greater Wynnewood Exotic Animal Park",
"org_verifier_data": "The Greater Wynnewood Exotic Animal Park",
"dates_source_data": "Feb - Sept 2020",
"dates_verifier_data": "Feb - Sept 2020"
}
]
},
"instant_verify_education": {
"id": "a123b4cd-1a23-1a23-12a3-a123456b7890",
"status": "ANALYZING",
"status_label": "Analyzing",
"overall_score": "PASS",
"overall_score_label": "Pass",
"red_flags": [
"This may indicate the applicant is high risk."
],
"green_flags": [
"This may indicate the applicant is low risk."
],
"result": "REVIEW",
"result_label": "Review",
"instant_verify_education_result": [{
"verification_status": "VERIFIED",
"verifications_scale": 0.8,
"label_source_data": "Exploring Level 1",
"label_verifier_data": "Exploring 1",
"org_source_data": "DZ Center",
"org_verifier_data": "DZ Center",
"dates_source_data": "Feb - Sept 2020",
"dates_verifier_data": "Feb - Sept 2020"
}
]
},
"instant_verify_credential": {
"id": "a123b4cd-1a23-1a23-12a3-a123456b7890",
"status": "ANALYZING",
"status_label": "Analyzing",
"overall_score": "PASS",
"overall_score_label": "Pass",
"red_flags": [
"This may indicate the applicant is high risk."
],
"green_flags": [
"This may indicate the applicant is low risk."
],
"result": "REVIEW",
"result_label": "Review",
"instant_verification_credential_result": [{
"verification_status": "VERIFIED",
"verifications_scale": 0.8,
"label_source_data": "CPR",
"label_verifier_data": "CPR Care Giver",
"org_source_data": "Red Cross",
"org_verifier_data": "Red Cross",
"dates_source_data": "Feb - Sept 2020",
"dates_verifier_data": "Feb - Sept 2020"
}
]
}
},
"salary": 0,
"sufficient_salary": true,
"high_risk_vulnerable_sector": true,
"job_safety_undue_risk": true,
"early_termination": 0,
"early_termination_label": "High",
"reliability_risk": 0,
"reliability_risk_label": "High",
"workplace_misconduct": 0,
"workplace_misconduct_label": "High"
}{
"count": int,
"next": URL,
"previous": URL,
"results": [
{
"(request_flags)": boolean,
"last_updated": string <date-time>,
"id": string <uuid>,
"short_uid": string,
"report_status": string <Enum>,
"information": {
object(Information)
},
"applicant_account": {
"id": string <uuid>,
"email": string,
"email_verified": boolean,
"phone_number": string
},
"application": {
object(Application)
},
"adjudication_status": string <Enum>,
"adjudication_status_label": string <Enum>,
"report_summary": {
"reference_result": object(BasePackageResult),
"australian_criminal_intelligence_commission_check_result": object(certificate_url),
"rcmp_result": object(RCMPResult),
"equifax_result": object(EquifaxResult),
"information_result": object(BasePackageResult),
"instant_verify_result": object(BasePackageResult),
"international_criminal_record_check_result": object(InternationalCriminalRecordCheckResult),
"motor_vehicle_record_result": object(MotorVehicleRecordResult),
"social_media_check_result": object(SocialMediaCheckResult),
"risk_result": object(RiskResult),
"soquij_result": object(SoquijResult),
"uk_basic_dbs_check_result": object(UKBasicDBSCheckResult),
"uk_basic_ds_check_result": object(UKBasicDSCheckResult),
"uk_right_to_work_check_result": object(UKRightToWorkResult),
"us_criminal_record_check_result": object(USCriminalRecordCheckResult),
"vaccination_check_result": object(BasePackageResult),
"right_to_work_result": object(RightToWorkResult),
"certn_verification": object(BasePackageResult),
"report_result": string <Enum>,
"report_result_label": string <Enum>,
"dispute": boolean,
"report_status": string <Enum>,
"report_status_label": string <Enum>
},
"can_upgrade": boolean,
"is_equifax_eligible": boolean,
"can_resend_email": boolean,
"resend_email_time": string <date-time>,
"is_viewed": boolean,
"onboarding_link": URL,
"applicant_adjudication": null,
"has_active_automated_reminders": boolean,
"order_status": string <Enum>,
"check_executions": [
{
"id": "check_exec_ABcDefghIJKlmNOPQRsTUv",
"check_name": string,
"status": string <Enum>
}
],
"status": string <Enum>
}
]
}{
"count": 1,
"next": null,
"previous": null,
"results": [
{
"request_identity_verification": false,
"request_equifax": false,
"request_base": false,
"request_instant_verify_employment": false,
"request_instant_verify_education": false,
"request_instant_verify_credential": false,
"request_international_criminal_record_check": false,
"request_enhanced_identity_verification": false,
"request_motor_vehicle_records": false,
"request_criminal_record_check": false,
"request_enhanced_criminal_record_check": false,
"request_vulnerable_sector_criminal_record_check": false,
"request_employer_references": false,
"request_address_references": false,
"request_employer_phone_references": false,
"request_address_phone_references": false,
"request_softcheck": true,
"request_social_media_check": false,
"request_soquij": false,
"request_us_criminal_record_check_tier_1": false,
"request_us_criminal_record_check_tier_2": false,
"request_us_criminal_record_check_tier_3": false,
"request_education_verification": false,
"request_credential_verification": false,
"request_employment_verification": false,
"request_vaccination_check": false,
"request_australian_criminal_intelligence_commission_check": false,
"request_volunteer_acic_check": false,
"request_right_to_work": false,
"request_uk_basic_dbs_check": false,
"request_uk_basic_ds_check": false,
"request_uk_right_to_work_check": false,
"last_updated": "2023-09-13T22:14:42.636137Z",
"id": "9779b0fa-e72b-4647-bf19-b721827636f1",
"short_uid": "abcEFgHI",
"report_status": "SENT",
"information": {
"first_name": "Andrew",
"last_name": "McLeod"
},
"applicant_account": {
"id": "abf9fcf4-45cc-40fc-b964-52add35aaab4",
"email": "[email protected]",
"email_verified": false,
"phone_number": null
},
"application": {
"owner": {
"email": "[email protected]"
},
"posting": null,
"is_active": true,
"team": {
"internal_name": "Team Name"
}
},
"adjudication_status": "NONE",
"adjudication_status_label": "None",
"report_summary": {
"reference_result": null,
"australian_criminal_intelligence_commission_check_result": null,
"rcmp_result": null,
"equifax_result": null,
"information_result": null,
"instant_verify_result": null,
"international_criminal_record_check_result": null,
"motor_vehicle_record_result": null,
"social_media_check_result": null,
"risk_result": null,
"soquij_result": null,
"uk_basic_dbs_check_result": null,
"uk_basic_ds_check_result": null,
"uk_right_to_work_check_result": null,
"us_criminal_record_check_result": null,
"vaccination_check_result": null,
"right_to_work_result": null,
"certn_verification": null,
"report_result": "NONE",
"report_result_label": "None",
"dispute": false,
"report_status": "SENT",
"report_status_label": "Sent"
},
"can_upgrade": false,
"is_equifax_eligible": false,
"can_resend_email": false,
"resend_email_time": "2023-09-14T22:14:42.586648Z",
"is_viewed": false,
"onboarding_link": "https://demo-app.certn.co/welcome/email?session=12d0449f-6ddd-40e8-91c7-405956692c58&token=1b4894b9-a211-4b4b-b14a-4a1234398e8f&onboardingType=HR&inviteRoute=email&inviteCode=111a1",
"applicant_adjudication": null,
"has_active_automated_reminders": true,
"order_status": "WAITING_ON_CANDIDATE",
"check_executions": [
{
"id": "check_exec_ABcDefghIJKlmNOPQRsTUv",
"check_name": "softcheck",
"status": "WAITING_ON_CANDIDATE"
}
],
"status": "Pending"
}
]
{
"id": string <uuid>,
"created": string <date-time>,
"modified": string <date-time>,
"tag": string,
"(request_flags)": boolean
"last_updated": string <date-time>,
"submitted_time": string <date-time>,
"is_submitted": boolean,
"applicant_type": string <Enum>,
"report_status": string <Enum>,
"status": string <Enum>,
"status_label": string <Enum>,
"result": string <Enum>,
"result_label": string <Enum>,
"certn_score": number,
"certn_score_label": string <Enum>,
"applicant_account": {
"id": string,
"email": string
},
"application": {
object (Application)
},
"country": "CA",
"information": {
object (Information)
},
"employment_verification": string <VerificationEnum>,
"education_verification": string <VerificationEnum>,
"credential_verification": string <VerificationEnum>,
"reference_result": {
object (BasePackageResult)
},
"information_result": {
object (BasePackageResult)
},
"risk_result": {
object (RiskResult)
},
"equifax_result": {
object (EquifaxResult)
},
"identity_verified": boolean,
"employment_verified": boolean,
"identity_verification": {
object (Identity Verification)
},
"enhanced_identity_verification": {
object (EnhancedIdentityVerification)
},
"manual_id_verification": {
object (ManualIDVerification)
},
"rcmp_result": {
object (BasePackageResult)
},
"us_criminal_record_check_result": {
object (USCriminalRecordCheckResult)
},
"verification_result": {
object (VerificationResult)
},
"international_criminal_record_check_result": {
object (BasePackageResult)
},
"motor_vehicle_record_result": {
object (BasePackageResult)
},
"salary": number,
"sufficient_salary": boolean,
"high_risk_vulnerable_sector": boolean,
"job_safety_undue_risk": boolean,
"early_termination": number,
"early_termination_label": string <Enum>,
"reliability_risk": number,
"reliability_risk_label": string <Enum>,
"workplace_misconduct": number,
"workplace_misconduct_label": string <Enum>
}{
"id": "a123b4cd-1a23-1a23-12a3-a123456b7890",
"created": "2021-11-10T18:20:22Z",
"modified": "2021-11-10T18:20:22Z",
"tag": "Sub-Client 123",
"request_base": false,
"request_behavioural": false,
"request_softcheck": true,
"request_us_ssn_verification": false,
"request_equifax": true,
"request_identity_verification": false,
"request_enhanced_identity_verification": false,
"request_criminal_record_check": false,
"request_enhanced_criminal_record_check": false,
"request_us_criminal_record_check_tier_1": false,
"request_us_criminal_record_check_tier_2": false,
"request_us_criminal_record_check_tier_3": false,
"request_international_criminal_record_check": false,
"request_motor_vehicle_records": false,
"request_employment_verification": false,
"request_education_verification": false,
"request_credential_verification": false,
"request_employer_references": false,
"request_address_references": false,
"request_employer_phone_references": false,
"request_address_phone_references": false,
"request_instant_verify_employment": false,
"request_instant_verify_education": false,
"request_instant_verify_credential": false,
"last_updated": "2021-11-10T18:20:22Z",
"submitted_time": "2021-11-10T18:20:22Z",
"is_submitted": true,
"applicant_type": "STANDARD",
"report_status": "IN_PROGRESS",
"status": "Pending",
"status_label": "Pending",
"result": "REVIEW",
"result_label": "Review",
"certn_score": 85,
"certn_score_label": "PASS",
"applicant_account": {
"id": "string",
"email": "string"
},
"application": {
"id": "a123b4cd-1a23-1a23-12a3-a123456b7890",
"created": "2021-11-10T18:20:22Z",
"modified": "2021-11-10T18:20:22Z",
"email": "string"
},
"country": "CA",
"information": {
"id": "a123b4cd-1a23-1a23-12a3-a123456b7890",
"created": "2021-11-10T18:20:22Z",
"modified": "2021-11-10T18:20:22Z",
"first_name": "Sebastien",
"middle_name": "Jack Pierre",
"last_name": "Normandin",
"last_name_at_birth": "string",
"former_names": "string",
"alias": "string",
"date_of_birth": "2021-11-10",
"phone_number": "250-123-1234",
"sin_ssn": 123123123,
"gender": "M",
"birth_city": "string",
"birth_province_state": "string",
"birth_other_province_state": "string",
"birth_country": "string",
"license_number": "string",
"license_valid": true,
"license_prov_state": "string",
"license_other_country": true,
"license_type": "CA",
"cover_letter": "string",
"addresses": [
{
"address": "4412 King Alfred Court",
"unit": 100,
"city": "Victoria",
"province_state": "BC",
"country": "CA",
"postal_code": "V8A1B2",
"rent_or_own": "R",
"cost": 0,
"start_date": "2021-11-10",
"end_date": "2021-11-10",
"certn_verification": "VERIFIED",
"verification_notes": "string",
"address_reference": {
"email": {
"address": "[email protected]"
},
"phone_number": {
"phone_type": "NONE",
"number": "+1 250 555 1234",
"country": "string"
},
"name": {
"first_name": "string",
"middle_name": "string",
"last_name": "string"
},
"contact": {
"can_contact": true,
"can_contact_after_date": "2021-11-10"
}
}
}
],
"employers": [
{
"company_name": "string",
"position": "string",
"income": 8500,
"pay_period": "PER_HOUR",
"start_date": "2021-11-10",
"end_date": "2021-11-10",
"certn_verification": "VERIFIED",
"verification_notes": "string",
"employer_reference": {
"email": {
"address": "[email protected]"
},
"phone_number": {
"phone_type": "NONE",
"number": "+1 250 555 1234",
"country": "string"
},
"name": {
"first_name": "string",
"middle_name": "string",
"last_name": "string"
},
"contact": {
"can_contact": true,
"can_contact_after_date": "2021-11-10"
}
}
}
],
"educations": [
{
"institution": "string",
"degree": {
"degree": "2021-11-10",
"verified": true
},
"address": {
"address": "4412 King Alfred Court",
"unit": 100,
"city": "Victoria",
"province_state": "BC",
"country": "CA",
"postal_code": "V8A1B2"
},
"start_date": "2021-11-10",
"end_date": "2021-11-10",
"certn_verification": "VERIFIED",
"verification_notes": "string"
}
],
"convictions": [
{
"offense": 2002,
"date_of_sentence": "2000-01-01T00:00:00.000Z",
"court_location": "Toronto, ON, Canada",
"description": "Robbery; Theft over $200"
}
]
},
"employment_verification": "VERIFIED",
"education_verification": "VERIFIED",
"credential_verification": "VERIFIED",
"reference_result": {
"id": "a123b4cd-1a23-1a23-12a3-a123456b7890",
"status": "ANALYZING",
"status_label": "Analyzing",
"overall_score": "PASS",
"overall_score_label": "Pass",
"red_flags": [
"This may indicate the applicant is high risk."
],
"green_flags": [
"This may indicate the applicant is low risk."
],
"result": "REVIEW",
"result_label": "Review"
},
"information_result": {
"id": "a123b4cd-1a23-1a23-12a3-a123456b7890",
"status": "ANALYZING",
"status_label": "Analyzing",
"overall_score": "PASS",
"overall_score_label": "Pass",
"red_flags": [
"This may indicate the applicant is high risk."
],
"green_flags": [
"This may indicate the applicant is low risk."
],
"result": "REVIEW",
"result_label": "Review"
},
"risk_result": {
"id": "a123b4cd-1a23-1a23-12a3-a123456b7890",
"status": "ANALYZING",
"status_label": "Analyzing",
"overall_score": "PASS",
"overall_score_label": "Pass",
"red_flags": [
"This may indicate the applicant is high risk."
],
"green_flags": [
"This may indicate the applicant is low risk."
],
"result": "REVIEW",
"result_label": "Review",
"risk_evaluations": [
{
"id": "a123b4cd-1a23-1a23-12a3-a123456b7890",
"overall_score": "PASS",
"risk_information_result": {},
"criminal_results": [
{
"confidence": 0,
"confidence_label": "Likely",
"overall_score": "PASS",
"criminal_identity": {
"criminal_cases": [
{
"case_type": "Criminal",
"number": "123asd",
"file_date": "2000-12-12",
"judgment_date": "2000-12-12",
"summary_description": "The case filings summary description",
"full_description": "string",
"notes": "No additional case notes available",
"court": {
"court": "Seattle Superior Court",
"court_type": "Criminal",
"docket_number": "545fjd",
"filed_date": "2000-12-12",
"served_date": "2000-12-12",
"trial_date": "2000-12-12",
"jurisdiction": "Seattle County"
},
"criminal_charges": [
{
"offense_description": "Breach of peace",
"offense_date": "2000-12-12",
"offense_type": "Felony",
"plea": "Not Guilty",
"hearing_date": "2000-12-12",
"hearing_type": "Open court hearing",
"probation": "No probation given",
"community_service": "No community service given",
"sentence_suspended": "None",
"fines": "No fines given",
"fines_paid_status": "Fines not paid",
"fines_paid_date": "2000-12-12",
"cost": "200",
"restitution": "None",
"transferred_jurisdiction": "Transferred from Seattle",
"transferred_case_number": "690330",
"active_warrant": "No active warrant",
"jail_time": "6 months jail time",
"prison_time": "6 months prison time",
"charge_in_progress": "no charge in progress",
"charge": "Vehicular manslaughter two counts",
"charge_level": "Felony",
"charge_class": "None",
"dispositions": [
{
"offense_description": "Speeding",
"offense_type": "Infraction",
"offense_date": "2000-12-12",
"description": "Description of the disposition offense",
"disposition_date": "2000-12-12",
"statue": "20-1212(B)",
"offense_class": "The offense class description",
"final_plea": "Not Guilty",
"disposition_description": "The description of the dispostion"
}
],
"arrests": [
{
"arrest_date": "2000-12-12",
"booking_number": "42069",
"citation_number": "247365",
"arresting_agency": "KERSHAW COUNTY DETENTION CENTER",
"offense_type": "Misdemeanor",
"offense_description": "A description of the arresting offense",
"counts": "Arrest has 6 counts"
}
],
"sentences": [
{
"sentence_type": "Community Service and Fines",
"duration": "6 months",
"amount": "100",
"amount_paid": "50",
"paid": "Half the fine has been paid",
"qualifier": "The sentence has no qualifier information",
"description": "The sentence description",
"effective_date": "2000-12-12",
"appearance_date": "2000-12-12",
"appearance_finding": "There are no appearance findings to detail about the sentence"
}
],
"additional_informations": [
{
"description": "More case information was found.",
"additional_description": "None",
"event_date": "2000-12-12"
}
]
}
]
}
],
"criminal_alerts": [
{
"parent_category": "FRAUD",
"category": "Burglary",
"stage": "Conviction",
"type": "Citation",
"description": "Convicted of burglary",
"date": "2000-12-12",
"parent_category_label": "Fraud"
}
],
"criminal_sources": [
{
"name": "World News",
"url": "worldnews.com",
"date": "2000-12-12",
"format": "Online Media",
"headline": "Burglary Conviction for Area Man",
"publication_source": "World News Conglomerate",
"publisher": "World News"
}
],
"criminal_addresses": [
{
"start_date": "2000-12-12",
"end_date": "2000-12-12",
"unit": "1a",
"address": "123 fort st.",
"city": "Victoria",
"province_state": "BC",
"country": "Canda",
"postal_code": "V8X2C3"
}
],
"criminal_additional_informations": [
{
"aliases": [
"willy will",
"billy bill"
],
"dates_of_birth": [
"2000-12-12"
],
"name": {
"first_name": "string",
"middle_name": "string",
"last_name": "string"
}
}
]
}
}
]
}
]
},
"equifax_result": {
"id": "a123b4cd-1a23-1a23-12a3-a123456b7890",
"status": "ANALYZING",
"status_label": "Analyzing",
"overall_score": "PASS",
"overall_score_label": "Pass",
"red_flags": [
"This may indicate the applicant is high risk."
],
"green_flags": [
"This may indicate the applicant is low risk."
],
"result": "REVIEW",
"result_label": "Review",
"description": "The financial score is based on self-provided information from the applicant and an analysis of the applicant's information available to Certn. This includes a credit check, Equifax record analysis, as well as other important informational data points",
"total_debt": 100,
"upgradable": false,
"trades": [
{
"credit_grantor": "RBC",
"payment_status": "Up to date",
"date_opened": "2000-12-12",
"account_rating": "High",
"date_reported": "2000-12-12",
"account_type": "Revolving",
"high_credit": 2000,
"balance_amount": 1000,
"last_activity_or_payment": "Paid as up to date",
"r_code": "R-1",
"percent_credit_used": 50,
"account_number": "112ksjd",
"past_due_amount": 0,
"payment_term_amount": 120,
"months_reviewed": 15,
"narratives": [
"Account has been paid in full."
]
}
],
"employers": [
{
"employment": "Subject's Current Employer",
"occupation": "Software",
"employer": "Certn",
"city": "Victoria",
"province": "BC",
"verification": true,
"salary": 1000000
}
],
"addresses": [
{
"address": "123 fort st.",
"civic_number": 123,
"street_name": "fort st.",
"city": "Victoria",
"province": "BC"
}
],
"collections": [
{
"date_of_last_payment": "2000-12-12",
"creditor": "Boys Club",
"amount_owed": 10000,
"amount_paid": 50,
"ledger_number": "123aslld",
"date_paid": "2000-12-12T00:00:00.000Z",
"date_reported": "2000-12-12T00:00:00.000Z",
"assigned_date": "2012-12-12T00:00:00.000Z",
"verification_date": "2000-12-12T00:00:00.000Z",
"account_designation": "Individual",
"first_deliquency": "2000-12-12T00:00:00.000Z",
"agency_entity": "GQC123",
"reason": "Credit not paid on in full",
"description": "Parking ticket"
}
],
"deposit_alerts": [
{
"customer_entity": "RBC",
"date_reported": "2000-12-12T00:00:00.000Z",
"account_type": "Business",
"date_opened": "2000-12-12T00:00:00.000Z",
"date_closed": "2000-12-12T00:00:00.000Z",
"date_written_off": "2000-12-12T00:00:00.000Z",
"amount_written_off": 2000,
"alert_status": "High",
"alert_status_date": "2000-12-12T00:00:00.000Z"
}
],
"bankruptcies": [
{
"account_type": "Individual",
"liability_amount": 2000,
"asset_amount": 20000,
"customer": "CRED COUNSELLING SOC",
"case_number_and_trustee": "12312 CE ASSOCIATES",
"filer": "Subject",
"legal_narrative": "No legal information available",
"date_filed": "2000-12-12T00:00:00.000Z",
"intent_or_disposition": "Discharged"
}
],
"judgments": [
{
"plaintiff": "Fred Rickleson",
"defendant": "Rick Frederickson",
"amount": 1000.21,
"date_filed": "2000-12-12T00:00:00.000Z",
"date_satisfied": "2000-12-12T00:00:00.000Z",
"verification_date": "2000-12-12T00:00:00.000Z",
"court_entity": "RBC",
"garnishee": "RBC",
"description": "Fred sued Rick"
}
],
"legal_items": [
{
"case_number": "1232djdsj",
"verification_date": "2000-12-12T00:00:00.000Z",
"update_source_code": "Tape rptd",
"date_filed": "2000-12-12T00:00:00.000Z",
"court_entity": "Toronto small claims",
"status_code": "Satisfied",
"date_satisfied": "2000-12-12T00:00:00.000Z",
"amount": 10000,
"defendant": "John Smithy",
"plaintiff": "Smith Johny",
"lawyer_name_address": "Johnson LLC 123 fort st Victoria",
"legal_item_description": "It was very bad deal"
}
],
"liens": [
{
"amount": 1000,
"date_filed": "1999-12-12T00:00:00.000Z",
"lien_class": "Class A",
"date_released": "1990-12-12T00:00:00.000Z",
"date_verified": "1990-12-12T00:00:00.000Z",
"court_entity": "Superior Court.",
"case_number": "123asda",
"lien_description": "Lien on house."
}
],
"secured_loans": [
{
"date_filed": "1990-12-12T00:00:00.000Z",
"court_entity": "Superior",
"creditor_name_address": "RBC 123 Main st.",
"creditor_industry_code": "620a",
"maturity_date": "1990-12-12T00:00:00.000Z"
}
],
"fraud_warnings": [
{
"product_description": "Fraud warnings are warnings of fraud.",
"message_priority": "Very high",
"message_code": "123a",
"message_description": "High fraud alert for bank fraud"
}
],
"non_sufficient_funds": [
{
"date_reported": "1990-12-12T00:00:00.000Z",
"creditor_entity": "RBC",
"nsfamount": 1000.2,
"details": "No sufficient funds in savings account.",
"verification_date": "1990-12-12T00:00:00.000Z"
}
],
"credit_file_metadatas": [
{
"hit_strength_indicator": "HIT",
"request_number": "123asd",
"address_discrepancy": "No discrepancy found in address",
"customer_number": "123asd",
"report_id": "123asd",
"file_since_date": "1990-12-12T00:00:00.000Z",
"date_of_last_activity": "1990-12-12T00:00:00.000Z",
"date_of_request": "1990-12-12T00:00:00.000Z",
"hit": "Big Hit",
"data_warning_messages": [
"No data warning messages"
],
"card_alert_warning_messages": [
"Credit card on high alert"
],
"alert_indicators": [
"No messages"
]
}
],
"other_incomes": [
{
"date_reported": "1990-12-12T00:00:00.000Z",
"income_source": "RBC",
"amount": 1000000,
"verification_date": "1990-12-12T00:00:00.000Z"
}
],
"consumer_statements": [
{
"date_reported": "1990-12-12T00:00:00.000Z",
"statement": "No consumer statement available."
}
],
"bank_accounts": [
{
"account": "Personal checking",
"date_reported": "1990-12-12T00:00:00.000Z",
"creditor_entity": "RBC",
"account_number": "123asd",
"figure_amount": 1000.12,
"date_opened": "1990-12-12T00:00:00.000Z",
"account_type": "Checking",
"status": "active",
"number_of_nsf": 0
}
],
"local_inquiries": [
{
"inquiry_date": "1990-12-12T00:00:00.000Z",
"customer_name": "Certn"
}
],
"foreign_inquiries": [
{
"inquiry_date": "1990-12-12T00:00:00.000Z",
"city_name_or_inquiry_number": "Seattle",
"inquiry_province": "WA"
}
]
},
"identity_verified": true,
"employment_verified": true,
"identity_verification": {
"id": "a123b4cd-1a23-1a23-12a3-a123456b7890",
"created": "2021-11-10T18:20:22Z",
"modified": "2021-11-10T18:20:22Z",
"status": "A",
"result": "VERIFIED"
},
"enhanced_identity_verification": {
"id": "a123b4cd-1a23-1a23-12a3-a123456b7890",
"created": "2021-11-10T18:20:22Z",
"modified": "2021-11-10T18:20:22Z",
"status": "A",
"result": "VERIFIED"
},
"manual_id_verification": {
"id": "a123b4cd-1a23-1a23-12a3-a123456b7890",
"created": "2021-11-10T18:20:22Z",
"modified": "2021-11-10T18:20:22Z",
"status": "A",
"result": "VERIFIED"
},
"rcmp_result": {
"id": "a123b4cd-1a23-1a23-12a3-a123456b7890",
"status": "ANALYZING",
"status_label": "Analyzing",
"overall_score": "PASS",
"overall_score_label": "Pass",
"red_flags": [
"This may indicate the applicant is high risk."
],
"green_flags": [
"This may indicate the applicant is low risk."
],
"result": "REVIEW",
"result_label": "Review"
},
"us_criminal_record_check_result": {
"id": "a123b4cd-1a23-1a23-12a3-a123456b7890",
"status": "ANALYZING",
"status_label": "Analyzing",
"overall_score": "PASS",
"overall_score_label": "Pass",
"red_flags": [
"This may indicate the applicant is high risk."
],
"green_flags": [
"This may indicate the applicant is low risk."
],
"result": "REVIEW",
"result_label": "Review",
"criminal_cases": [
{
"case_type": "Criminal",
"number": "123asd",
"file_date": "2000-12-12",
"judgment_date": "2000-12-12",
"summary_description": "The case filings summary description",
"full_description": "string",
"notes": "No additional case notes available",
"court": {
"court": "Seattle Superior Court",
"court_type": "Criminal",
"docket_number": "545fjd",
"filed_date": "2000-12-12",
"served_date": "2000-12-12",
"trial_date": "2000-12-12",
"jurisdiction": "Seattle County"
},
"criminal_charges": [
{
"offense_description": "Breach of peace",
"offense_date": "2000-12-12",
"offense_type": "Felony",
"plea": "Not Guilty",
"hearing_date": "2000-12-12",
"hearing_type": "Open court hearing",
"probation": "No probation given",
"community_service": "No community service given",
"sentence_suspended": "None",
"fines": "No fines given",
"fines_paid_status": "Fines not paid",
"fines_paid_date": "2000-12-12",
"cost": "200",
"restitution": "None",
"transferred_jurisdiction": "Transferred from Seattle",
"transferred_case_number": "690330",
"active_warrant": "No active warrant",
"jail_time": "6 months jail time",
"prison_time": "6 months prison time",
"charge_in_progress": "no charge in progress",
"charge": "Vehicular manslaughter two counts",
"charge_level": "Felony",
"charge_class": "None",
"dispositions": [
{
"offense_description": "Speeding",
"offense_type": "Infraction",
"offense_date": "2000-12-12",
"description": "Description of the disposition offense",
"disposition_date": "2000-12-12",
"statue": "20-1212(B)",
"offense_class": "The offense class description",
"final_plea": "Not Guilty",
"disposition_description": "The description of the dispostion"
}
],
"arrests": [
{
"arrest_date": "2000-12-12",
"booking_number": "42069",
"citation_number": "247365",
"arresting_agency": "KERSHAW COUNTY DETENTION CENTER",
"offense_type": "Misdemeanor",
"offense_description": "A description of the arresting offense",
"counts": "Arrest has 6 counts"
}
],
"sentences": [
{
"sentence_type": "Community Service and Fines",
"duration": "6 months",
"amount": "100",
"amount_paid": "50",
"paid": "Half the fine has been paid",
"qualifier": "The sentence has no qualifier information",
"description": "The sentence description",
"effective_date": "2000-12-12",
"appearance_date": "2000-12-12",
"appearance_finding": "There are no appearance findings to detail about the sentence"
}
],
"additional_informations": [
{
"description": "More case information was found.",
"additional_description": "None",
"event_date": "2000-12-12"
}
]
}
]
}
],
"ssn_id_document_reports": [
{
"ssn_result": "Discrepancy",
"ssn_status": "Complete",
"names": [
{
"first_name": "string",
"middle_name": "string",
"last_name": "string"
}
],
"addresses": [
{
"address": "4412 King Alfred Court",
"unit": 100,
"city": "Victoria",
"province_state": "BC",
"country": "CA",
"postal_code": "V8A1B2"
}
],
"id_documents": [
{
"type": "Passport",
"number": "123412kdsdsk",
"issuing_country": "US",
"issuing_province_state": "WA",
"issue_date": "2000-12-12",
"expiry_date": "2000-12-12"
}
],
"dates_of_birth": [
{
"date_of_birth": "2000-12-12"
}
]
}
],
"scan_status": {
"national_sex_offender_registry_scan": "Complete",
"security_watch_list_scan": "Complete",
"fraud_scan": "Complete",
"ofac_global_sanctions_scan": "Complete",
"ssn_verification_scan": "Complete",
"criminal_record_scan": "Complete",
"federal_record_scan": "Incomplete",
"single_state_county_record_scan": "Incomplete",
"all_state_county_record_scan": "Incomplete"
},
"record_check_requests": [
{
"status": "Complete",
"state": "OH",
"county": "Kershaw",
"district": "District 1",
"fips_code": 12312,
"search_type": "Criminal/Court Database Search"
}
]
},
"verification_result": {
"id": "a123b4cd-1a23-1a23-12a3-a123456b7890",
"status": "ANALYZING",
"status_label": "Analyzing",
"overall_score": "PASS",
"overall_score_label": "Pass",
"red_flags": [
"This may indicate the applicant is high risk."
],
"green_flags": [
"This may indicate the applicant is low risk."
],
"result": "REVIEW",
"result_label": "Review",
"employment_verification": "VERIFIED",
"education_verification": "VERIFIED",
"credential_verification": "VERIFIED",
"certn_verification": "VERIFIED",
"employer_verification_results": {
"id": "a123b4cd-1a23-1a23-12a3-a123456b7890",
"status": "ANALYZING",
"status_label": "Analyzing",
"overall_score": "PASS",
"overall_score_label": "Pass",
"red_flags": [
"This may indicate the applicant is high risk."
],
"green_flags": [
"This may indicate the applicant is low risk."
],
"result": "REVIEW",
"result_label": "Review",
"certn_verification": "VERIFIED",
"company_name_verified": false,
"position_name_verified": false,
"income_verified": false,
"employment_dates_verified": true,
"verification_notes": "Verification notes!",
"employer": {
"company_name": "string",
"position": "string",
"income": 8500,
"pay_period": "PER_HOUR",
"start_date": "2021-11-10",
"end_date": "2021-11-10",
"certn_verification": "VERIFIED",
"verification_notes": "string",
"employer_reference": {
"email": {
"address": "[email protected]"
},
"phone_number": {
"phone_type": "NONE",
"number": "+1 250 555 1234",
"country": "string"
},
"name": {
"first_name": "string",
"middle_name": "string",
"last_name": "string"
},
"contact": {
"can_contact": true,
"can_contact_after_date": "2021-11-10"
}
}
}
},
"education_verification_results": {
"id": "a123b4cd-1a23-1a23-12a3-a123456b7890",
"status": "ANALYZING",
"status_label": "Analyzing",
"overall_score": "PASS",
"overall_score_label": "Pass",
"red_flags": [
"This may indicate the applicant is high risk."
],
"green_flags": [
"This may indicate the applicant is low risk."
],
"result": "REVIEW",
"result_label": "Review",
"certn_verification": "VERIFIED",
"specializations_verified": false,
"degree_verified": false,
"institution_verified": false,
"enrolment_dates_verified": true,
"verification_notes": "Verification notes!",
"education": {
"institution": "string",
"degree": {
"degree": "2021-11-10",
"verified": true
},
"address": {
"address": "4412 King Alfred Court",
"unit": 100,
"city": "Victoria",
"province_state": "BC",
"country": "CA",
"postal_code": "V8A1B2"
},
"start_date": "2021-11-10",
"end_date": "2021-11-10",
"certn_verification": "VERIFIED",
"verification_notes": "string"
}
},
"credential_verification_results": {
"id": "a123b4cd-1a23-1a23-12a3-a123456b7890",
"status": "ANALYZING",
"status_label": "Analyzing",
"overall_score": "PASS",
"overall_score_label": "Pass",
"red_flags": [
"This may indicate the applicant is high risk."
],
"green_flags": [
"This may indicate the applicant is low risk."
],
"result": "REVIEW",
"result_label": "Review",
"certn_verification": "VERIFIED",
"certification_date_verified": false,
"certification_verified": false,
"institution_verified": true,
"verification_notes": "Verification notes!",
"credential": {
"description": "string",
"institution": "string",
"certification": "string",
"date_of_certification": "2021-11-10",
"current": true,
"certn_verification": "VERIFIED",
"verification_notes": "string"
}
}
},
"international_criminal_record_check_result": {
"id": "a123b4cd-1a23-1a23-12a3-a123456b7890",
"status": "ANALYZING",
"status_label": "Analyzing",
"overall_score": "PASS",
"overall_score_label": "Pass",
"red_flags": [
"This may indicate the applicant is high risk."
],
"green_flags": [
"This may indicate the applicant is low risk."
],
"result": "REVIEW",
"result_label": "Review"
},
"motor_vehicle_record_result": {
"id": "a123b4cd-1a23-1a23-12a3-a123456b7890",
"status": "ANALYZING",
"status_label": "Analyzing",
"overall_score": "PASS",
"overall_score_label": "Pass",
"red_flags": [
"This may indicate the applicant is high risk."
],
"green_flags": [
"This may indicate the applicant is low risk."
],
"result": "REVIEW",
"result_label": "Review"
},
"salary": 0,
"sufficient_salary": true,
"high_risk_vulnerable_sector": true,
"job_safety_undue_risk": true,
"early_termination": 0,
"early_termination_label": "High",
"reliability_risk": 0,
"reliability_risk_label": "High",
"workplace_misconduct": 0,
"workplace_misconduct_label": "High"
}string <binary>{
"report_url": string
}{
"report_url": "https://s3.ca-central-1.amazonaws.com/certn-reports/hr_806066d2-f9e7-4d54-844e-bcc225a8ef6d_1575603960.pdf?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAI322I2RK3VQJ4O3Q%2F20191206%2Fca-central-1%2Fs3%2Faws4_request&X-Amz-Date=20191206T034608Z&X-Amz-Expires=3600&X-Amz-SignedHeaders=host&X-Amz-Signature=0032b9ff42a2fe1135d28079f67b70338f5abc373b4b0a72707e3109eac8815d"
}{
"html": string
}{
"html": "<!doctype html>\\n<html>\\n\\n<head><title>Certn Report</title></head><body>HR</body></html>"
}How to make requests and generate reports as a property management client in the Certn API.
{
"id": string <uuid>,
"created": string <date-time>,
"modified": string <date-time>,
"applicants": [
{
"id": string <uuid>,
"status": string <Enum>,
"first_name": string,
"last_name": string,
"email": string,
"phone_number": {
"phone_type": string <Enum>,
"number": string",
"country": string <ISO Country Code>
}
}
]
}{
"id": "a123b4cd-1a23-1a23-12a3-a123456b7890",
"created": "2021-11-12T21:21:50Z",
"modified": "2021-11-12T21:21:50Z",
"applicants": [
{
"id": "a123b4cd-1a23-1a23-12a3-a123456b7890",
"status": "Pending",
"first_name": "string",
"last_name": "string",
"email": "string",
"phone_number": {
"phone_type": "NONE",
"number": "+1 250 555 1234",
"country": "CA"
}
}
]
}{
"id": string <uuid>,
"created": string <date-time>,
"modified": string <date-time>,
"tag": string,
"(request_flags)": boolean
"last_updated": string <date-time>,
"submitted_time": string <date-time>,
"is_submitted": boolean,
"applicant_type": string <Enum>,
"report_status": string <Enum>,
"status": string <Enum>,
"status_label": string <Enum>,
"result": string <Enum>,
"result_label": string <Enum>,
"certn_score": number,
"certn_score_label": string <Enum>,
"applicant_account": {
"id": string,
"email": string
},
"application": {
object (Application)
},
"country": "CA",
"information": {
object (Information)
},
"employment_verification": string <VerificationEnum>,
"education_verification": string <VerificationEnum>,
"credential_verification": string <VerificationEnum>,
"reference_result": {
object (BasePackageResult)
},
"information_result": {
object (BasePackageResult)
},
"risk_result": {
object (RiskResult)
},
"equifax_result": {
object (EquifaxResult)
},
"identity_verified": boolean,
"employment_verified": boolean,
"identity_verification": {
object (Identity Verification)
},
"enhanced_identity_verification": {
object (EnhancedIdentityVerification)
},
"manual_id_verification": {
object (ManualIDVerification)
},
"rcmp_result": {
object (BasePackageResult)
},
"us_criminal_record_check_result": {
object (USCriminalRecordCheckResult)
},
"verification_result": {
object (VerificationResult)
},
"international_criminal_record_check_result": {
object (BasePackageResult)
},
"motor_vehicle_record_result": {
object (BasePackageResult)
},
"salary": number,
"sufficient_salary": boolean,
"high_risk_vulnerable_sector": boolean,
"job_safety_undue_risk": boolean,
"early_termination": number,
"early_termination_label": string <Enum>,
"reliability_risk": number,
"reliability_risk_label": string <Enum>,
"workplace_misconduct": number,
"workplace_misconduct_label": string <Enum>
}{
"id": "a123b4cd-1a23-1a23-12a3-a123456b7890",
"created": "2021-11-12T21:21:50Z",
"modified": "2021-11-12T21:21:50Z",
"tag": "Sub-Client 123",
"request_base": false,
"request_behavioural": false,
"request_softcheck": true,
"request_us_ssn_verification": false,
"request_equifax": true,
"request_identity_verification": false,
"request_enhanced_identity_verification": false,
"request_criminal_record_check": false,
"request_enhanced_criminal_record_check": false,
"request_us_criminal_record_check_tier_1": false,
"request_us_criminal_record_check_tier_2": false,
"request_us_criminal_record_check_tier_3": false,
"request_international_criminal_record_check": false,
"request_motor_vehicle_records": false,
"request_employment_verification": false,
"request_education_verification": false,
"request_credential_verification": false,
"request_employer_references": false,
"request_address_references": false,
"request_employer_phone_references": false,
"request_address_phone_references": false,
"request_instant_verify_employment": false,
"request_instant_verify_education": false,
"request_instant_verify_credential": false,
"last_updated": "2021-11-12T21:21:50Z",
"submitted_time": "2021-11-12T21:21:50Z",
"is_submitted": true,
"applicant_type": "STANDARD",
"report_status": "IN_PROGRESS",
"status": "Pending",
"status_label": "Pending",
"result": "REVIEW",
"result_label": "Review",
"certn_score": 85,
"certn_score_label": "PASS",
"applicant_account": {
"id": "string",
"email": "string"
},
"application": {
"id": "a123b4cd-1a23-1a23-12a3-a123456b7890",
"created": "2021-11-12T21:21:50Z",
"modified": "2021-11-12T21:21:50Z",
"email": "string"
},
"country": "CA",
"information": {
"id": "a123b4cd-1a23-1a23-12a3-a123456b7890",
"created": "2021-11-12T21:21:50Z",
"modified": "2021-11-12T21:21:50Z",
"first_name": "Sebastien",
"middle_name": "Jack Pierre",
"last_name": "Normandin",
"last_name_at_birth": "string",
"former_names": "string",
"alias": "string",
"date_of_birth": "2021-11-12",
"phone_number": "250-123-1234",
"sin_ssn": 123123123,
"gender": "M",
"birth_city": "string",
"birth_province_state": "string",
"birth_other_province_state": "string",
"birth_country": "string",
"license_number": "string",
"license_valid": true,
"license_prov_state": "string",
"license_other_country": true,
"license_type": "CA",
"cover_letter": "string",
"addresses": [{
"address": "4412 King Alfred Court",
"unit": 100,
"city": "Victoria",
"province_state": "BC",
"country": "CA",
"postal_code": "V8A1B2",
"rent_or_own": "R",
"cost": 0,
"start_date": "2021-11-12",
"end_date": "2021-11-12",
"certn_verification": "VERIFIED",
"verification_notes": "string",
"address_reference": {
"email": {
"address": "[email protected]"
},
"phone_number": {
"phone_type": "NONE",
"number": "+1 250 555 1234",
"country": "string"
},
"name": {
"first_name": "string",
"middle_name": "string",
"last_name": "string"
},
"contact": {
"can_contact": true,
"can_contact_after_date": "2021-11-12"
}
}
}
],
"employers": [{
"company_name": "string",
"position": "string",
"income": 8500,
"pay_period": "PER_HOUR",
"start_date": "2021-11-12",
"end_date": "2021-11-12",
"certn_verification": "VERIFIED",
"verification_notes": "string",
"employer_reference": {
"email": {
"address": "[email protected]"
},
"phone_number": {
"phone_type": "NONE",
"number": "+1 250 555 1234",
"country": "string"
},
"name": {
"first_name": "string",
"middle_name": "string",
"last_name": "string"
},
"contact": {
"can_contact": true,
"can_contact_after_date": "2021-11-12"
}
}
}
],
"educations": [{
"institution": "string",
"degree": {
"degree": "2021-11-12",
"verified": true
},
"address": {
"address": "4412 King Alfred Court",
"unit": 100,
"city": "Victoria",
"province_state": "BC",
"country": "CA",
"postal_code": "V8A1B2"
},
"start_date": "2021-11-12",
"end_date": "2021-11-12",
"certn_verification": "VERIFIED",
"verification_notes": "string"
}
],
"convictions": [{
"offense": 2002,
"date_of_sentence": "2000-01-01T00:00:00.000Z",
"court_location": "Toronto, ON, Canada",
"description": "Robbery; Theft over $200"
}
]
},
"employment_verification": "VERIFIED",
"education_verification": "VERIFIED",
"credential_verification": "VERIFIED",
"reference_result": {
"id": "a123b4cd-1a23-1a23-12a3-a123456b7890",
"status": "ANALYZING",
"status_label": "Analyzing",
"overall_score": "PASS",
"overall_score_label": "Pass",
"red_flags": [
"This may indicate the applicant is high risk."
],
"green_flags": [
"This may indicate the applicant is low risk."
],
"result": "REVIEW",
"result_label": "Review"
},
"information_result": {
"id": "a123b4cd-1a23-1a23-12a3-a123456b7890",
"status": "ANALYZING",
"status_label": "Analyzing",
"overall_score": "PASS",
"overall_score_label": "Pass",
"red_flags": [
"This may indicate the applicant is high risk."
],
"green_flags": [
"This may indicate the applicant is low risk."
],
"result": "REVIEW",
"result_label": "Review"
},
"risk_result": {
"id": "a123b4cd-1a23-1a23-12a3-a123456b7890",
"status": "ANALYZING",
"status_label": "Analyzing",
"overall_score": "PASS",
"overall_score_label": "Pass",
"red_flags": [
"This may indicate the applicant is high risk."
],
"green_flags": [
"This may indicate the applicant is low risk."
],
"result": "REVIEW",
"result_label": "Review",
"risk_evaluations": [{
"id": "a123b4cd-1a23-1a23-12a3-a123456b7890",
"overall_score": "PASS",
"risk_information_result": {},
"criminal_results": [{
"confidence": 0,
"confidence_label": "Likely",
"overall_score": "PASS",
"criminal_identity": {
"criminal_cases": [{
"case_type": "Criminal",
"number": "123asd",
"file_date": "2000-12-12",
"judgment_date": "2000-12-12",
"summary_description": "The case filings summary description",
"full_description": "string",
"notes": "No additional case notes available",
"court": {
"court": "Seattle Superior Court",
"court_type": "Criminal",
"docket_number": "545fjd",
"filed_date": "2000-12-12",
"served_date": "2000-12-12",
"trial_date": "2000-12-12",
"jurisdiction": "Seattle County"
},
"criminal_charges": [{
"offense_description": "Breach of peace",
"offense_date": "2000-12-12",
"offense_type": "Felony",
"plea": "Not Guilty",
"hearing_date": "2000-12-12",
"hearing_type": "Open court hearing",
"probation": "No probation given",
"community_service": "No community service given",
"sentence_suspended": "None",
"fines": "No fines given",
"fines_paid_status": "Fines not paid",
"fines_paid_date": "2000-12-12",
"cost": "200",
"restitution": "None",
"transferred_jurisdiction": "Transferred from Seattle",
"transferred_case_number": "690330",
"active_warrant": "No active warrant",
"jail_time": "6 months jail time",
"prison_time": "6 months prison time",
"charge_in_progress": "no charge in progress",
"charge": "Vehicular manslaughter two counts",
"charge_level": "Felony",
"charge_class": "None",
"dispositions": [{
"offense_description": "Speeding",
"offense_type": "Infraction",
"offense_date": "2000-12-12",
"description": "Description of the disposition offense",
"disposition_date": "2000-12-12",
"statue": "20-1212(B)",
"offense_class": "The offense class description",
"final_plea": "Not Guilty",
"disposition_description": "The description of the dispostion"
}
],
"arrests": [{
"arrest_date": "2000-12-12",
"booking_number": "42069",
"citation_number": "247365",
"arresting_agency": "KERSHAW COUNTY DETENTION CENTER",
"offense_type": "Misdemeanor",
"offense_description": "A description of the arresting offense",
"counts": "Arrest has 6 counts"
}
],
"sentences": [{
"sentence_type": "Community Service and Fines",
"duration": "6 months",
"amount": "100",
"amount_paid": "50",
"paid": "Half the fine has been paid",
"qualifier": "The sentence has no qualifier information",
"description": "The sentence description",
"effective_date": "2000-12-12",
"appearance_date": "2000-12-12",
"appearance_finding": "There are no appearance findings to detail about the sentence"
}
],
"additional_informations": [{
"description": "More case information was found.",
"additional_description": "None",
"event_date": "2000-12-12"
}
]
}
]
}
],
"criminal_alerts": [{
"parent_category": "FRAUD",
"category": "Burglary",
"stage": "Conviction",
"type": "Citation",
"description": "Convicted of burglary",
"date": "2000-12-12",
"parent_category_label": "Fraud"
}
],
"criminal_sources": [{
"name": "World News",
"url": "worldnews.com",
"date": "2000-12-12",
"format": "Online Media",
"headline": "Burglary Conviction for Area Man",
"publication_source": "World News Conglomerate",
"publisher": "World News"
}
],
"criminal_addresses": [{
"start_date": "2000-12-12",
"end_date": "2000-12-12",
"unit": "1a",
"address": "123 fort st.",
"city": "Victoria",
"province_state": "BC",
"country": "Canda",
"postal_code": "V8X2C3"
}
],
"criminal_additional_informations": [{
"aliases": [
"willy will",
"billy bill"
],
"dates_of_birth": [
"2000-12-12"
],
"name": {
"first_name": "string",
"middle_name": "string",
"last_name": "string"
}
}
]
}
}
]
}
]
},
"equifax_result": {
"id": "a123b4cd-1a23-1a23-12a3-a123456b7890",
"status": "ANALYZING",
"status_label": "Analyzing",
"overall_score": "PASS",
"overall_score_label": "Pass",
"red_flags": [
"This may indicate the applicant is high risk."
],
"green_flags": [
"This may indicate the applicant is low risk."
],
"result": "REVIEW",
"result_label": "Review",
"description": "The financial score is based on self-provided information from the applicant and an analysis of the applicant's information available to Certn. This includes a credit check, Equifax record analysis, as well as other important informational data points",
"total_debt": 100,
"upgradable": false,
"trades": [{
"credit_grantor": "RBC",
"payment_status": "Up to date",
"date_opened": "2000-12-12",
"account_rating": "High",
"date_reported": "2000-12-12",
"account_type": "Revolving",
"high_credit": 2000,
"balance_amount": 1000,
"last_activity_or_payment": "Paid as up to date",
"r_code": "R-1",
"percent_credit_used": 50,
"account_number": "112ksjd",
"past_due_amount": 0,
"payment_term_amount": 120,
"months_reviewed": 15,
"narratives": [
"Account has been paid in full."
]
}
],
"employers": [{
"employment": "Subject's Current Employer",
"occupation": "Software",
"employer": "Certn",
"city": "Victoria",
"province": "BC",
"verification": true,
"salary": 1000000
}
],
"addresses": [{
"address": "123 fort st.",
"civic_number": 123,
"street_name": "fort st.",
"city": "Victoria",
"province": "BC"
}
],
"collections": [{
"date_of_last_payment": "2000-12-12",
"creditor": "Boys Club",
"amount_owed": 10000,
"amount_paid": 50,
"ledger_number": "123aslld",
"date_paid": "2000-12-12T00:00:00.000Z",
"date_reported": "2000-12-12T00:00:00.000Z",
"assigned_date": "2012-12-12T00:00:00.000Z",
"verification_date": "2000-12-12T00:00:00.000Z",
"account_designation": "Individual",
"first_deliquency": "2000-12-12T00:00:00.000Z",
"agency_entity": "GQC123",
"reason": "Credit not paid on in full",
"description": "Parking ticket"
}
],
"deposit_alerts": [{
"customer_entity": "RBC",
"date_reported": "2000-12-12T00:00:00.000Z",
"account_type": "Business",
"date_opened": "2000-12-12T00:00:00.000Z",
"date_closed": "2000-12-12T00:00:00.000Z",
"date_written_off": "2000-12-12T00:00:00.000Z",
"amount_written_off": 2000,
"alert_status": "High",
"alert_status_date": "2000-12-12T00:00:00.000Z"
}
],
"bankruptcies": [{
"account_type": "Individual",
"liability_amount": 2000,
"asset_amount": 20000,
"customer": "CRED COUNSELLING SOC",
"case_number_and_trustee": "12312 CE ASSOCIATES",
"filer": "Subject",
"legal_narrative": "No legal information available",
"date_filed": "2000-12-12T00:00:00.000Z",
"intent_or_disposition": "Discharged"
}
],
"judgments": [{
"plaintiff": "Fred Rickleson",
"defendant": "Rick Frederickson",
"amount": 1000.21,
"date_filed": "2000-12-12T00:00:00.000Z",
"date_satisfied": "2000-12-12T00:00:00.000Z",
"verification_date": "2000-12-12T00:00:00.000Z",
"court_entity": "RBC",
"garnishee": "RBC",
"description": "Fred sued Rick"
}
],
"legal_items": [{
"case_number": "1232djdsj",
"verification_date": "2000-12-12T00:00:00.000Z",
"update_source_code": "Tape rptd",
"date_filed": "2000-12-12T00:00:00.000Z",
"court_entity": "Toronto small claims",
"status_code": "Satisfied",
"date_satisfied": "2000-12-12T00:00:00.000Z",
"amount": 10000,
"defendant": "John Smithy",
"plaintiff": "Smith Johny",
"lawyer_name_address": "Johnson LLC 123 fort st Victoria",
"legal_item_description": "It was very bad deal"
}
],
"liens": [{
"amount": 1000,
"date_filed": "1999-12-12T00:00:00.000Z",
"lien_class": "Class A",
"date_released": "1990-12-12T00:00:00.000Z",
"date_verified": "1990-12-12T00:00:00.000Z",
"court_entity": "Superior Court.",
"case_number": "123asda",
"lien_description": "Lien on house."
}
],
"secured_loans": [{
"date_filed": "1990-12-12T00:00:00.000Z",
"court_entity": "Superior",
"creditor_name_address": "RBC 123 Main st.",
"creditor_industry_code": "620a",
"maturity_date": "1990-12-12T00:00:00.000Z"
}
],
"fraud_warnings": [{
"product_description": "Fraud warnings are warnings of fraud.",
"message_priority": "Very high",
"message_code": "123a",
"message_description": "High fraud alert for bank fraud"
}
],
"non_sufficient_funds": [{
"date_reported": "1990-12-12T00:00:00.000Z",
"creditor_entity": "RBC",
"nsfamount": 1000.2,
"details": "No sufficient funds in savings account.",
"verification_date": "1990-12-12T00:00:00.000Z"
}
],
"credit_file_metadatas": [{
"hit_strength_indicator": "HIT",
"request_number": "123asd",
"address_discrepancy": "No discrepancy found in address",
"customer_number": "123asd",
"report_id": "123asd",
"file_since_date": "1990-12-12T00:00:00.000Z",
"date_of_last_activity": "1990-12-12T00:00:00.000Z",
"date_of_request": "1990-12-12T00:00:00.000Z",
"hit": "Big Hit",
"data_warning_messages": [
"No data warning messages"
],
"card_alert_warning_messages": [
"Credit card on high alert"
],
"alert_indicators": [
"No messages"
]
}
],
"other_incomes": [{
"date_reported": "1990-12-12T00:00:00.000Z",
"income_source": "RBC",
"amount": 1000000,
"verification_date": "1990-12-12T00:00:00.000Z"
}
],
"consumer_statements": [{
"date_reported": "1990-12-12T00:00:00.000Z",
"statement": "No consumer statement available."
}
],
"bank_accounts": [{
"account": "Personal checking",
"date_reported": "1990-12-12T00:00:00.000Z",
"creditor_entity": "RBC",
"account_number": "123asd",
"figure_amount": 1000.12,
"date_opened": "1990-12-12T00:00:00.000Z",
"account_type": "Checking",
"status": "active",
"number_of_nsf": 0
}
],
"local_inquiries": [{
"inquiry_date": "1990-12-12T00:00:00.000Z",
"customer_name": "Certn"
}
],
"foreign_inquiries": [{
"inquiry_date": "1990-12-12T00:00:00.000Z",
"city_name_or_inquiry_number": "Seattle",
"inquiry_province": "WA"
}
]
},
"identity_verified": true,
"employment_verified": true,
"identity_verification": {
"id": "a123b4cd-1a23-1a23-12a3-a123456b7890",
"created": "2021-11-12T21:21:50Z",
"modified": "2021-11-12T21:21:50Z",
"status": "A",
"result": "VERIFIED"
},
"enhanced_identity_verification": {
"id": "a123b4cd-1a23-1a23-12a3-a123456b7890",
"created": "2021-11-12T21:21:50Z",
"modified": "2021-11-12T21:21:50Z",
"status": "A",
"result": "VERIFIED"
},
"manual_id_verification": {
"id": "a123b4cd-1a23-1a23-12a3-a123456b7890",
"created": "2021-11-12T21:21:50Z",
"modified": "2021-11-12T21:21:50Z",
"status": "A",
"result": "VERIFIED"
},
"rcmp_result": {
"id": "a123b4cd-1a23-1a23-12a3-a123456b7890",
"status": "ANALYZING",
"status_label": "Analyzing",
"overall_score": "PASS",
"overall_score_label": "Pass",
"red_flags": [
"This may indicate the applicant is high risk."
],
"green_flags": [
"This may indicate the applicant is low risk."
],
"result": "REVIEW",
"result_label": "Review"
},
"us_criminal_record_check_result": {
"id": "a123b4cd-1a23-1a23-12a3-a123456b7890",
"status": "ANALYZING",
"status_label": "Analyzing",
"overall_score": "PASS",
"overall_score_label": "Pass",
"red_flags": [
"This may indicate the applicant is high risk."
],
"green_flags": [
"This may indicate the applicant is low risk."
],
"result": "REVIEW",
"result_label": "Review",
"criminal_cases": [{
"case_type": "Criminal",
"number": "123asd",
"file_date": "2000-12-12",
"judgment_date": "2000-12-12",
"summary_description": "The case filings summary description",
"full_description": "string",
"notes": "No additional case notes available",
"court": {
"court": "Seattle Superior Court",
"court_type": "Criminal",
"docket_number": "545fjd",
"filed_date": "2000-12-12",
"served_date": "2000-12-12",
"trial_date": "2000-12-12",
"jurisdiction": "Seattle County"
},
"criminal_charges": [{
"offense_description": "Breach of peace",
"offense_date": "2000-12-12",
"offense_type": "Felony",
"plea": "Not Guilty",
"hearing_date": "2000-12-12",
"hearing_type": "Open court hearing",
"probation": "No probation given",
"community_service": "No community service given",
"sentence_suspended": "None",
"fines": "No fines given",
"fines_paid_status": "Fines not paid",
"fines_paid_date": "2000-12-12",
"cost": "200",
"restitution": "None",
"transferred_jurisdiction": "Transferred from Seattle",
"transferred_case_number": "690330",
"active_warrant": "No active warrant",
"jail_time": "6 months jail time",
"prison_time": "6 months prison time",
"charge_in_progress": "no charge in progress",
"charge": "Vehicular manslaughter two counts",
"charge_level": "Felony",
"charge_class": "None",
"dispositions": [{
"offense_description": "Speeding",
"offense_type": "Infraction",
"offense_date": "2000-12-12",
"description": "Description of the disposition offense",
"disposition_date": "2000-12-12",
"statue": "20-1212(B)",
"offense_class": "The offense class description",
"final_plea": "Not Guilty",
"disposition_description": "The description of the dispostion"
}
],
"arrests": [{
"arrest_date": "2000-12-12",
"booking_number": "42069",
"citation_number": "247365",
"arresting_agency": "KERSHAW COUNTY DETENTION CENTER",
"offense_type": "Misdemeanor",
"offense_description": "A description of the arresting offense",
"counts": "Arrest has 6 counts"
}
],
"sentences": [{
"sentence_type": "Community Service and Fines",
"duration": "6 months",
"amount": "100",
"amount_paid": "50",
"paid": "Half the fine has been paid",
"qualifier": "The sentence has no qualifier information",
"description": "The sentence description",
"effective_date": "2000-12-12",
"appearance_date": "2000-12-12",
"appearance_finding": "There are no appearance findings to detail about the sentence"
}
],
"additional_informations": [{
"description": "More case information was found.",
"additional_description": "None",
"event_date": "2000-12-12"
}
]
}
]
}
],
"ssn_id_document_reports": [{
"ssn_result": "Discrepancy",
"ssn_status": "Complete",
"names": [{
"first_name": "string",
"middle_name": "string",
"last_name": "string"
}
],
"addresses": [{
"address": "4412 King Alfred Court",
"unit": 100,
"city": "Victoria",
"province_state": "BC",
"country": "CA",
"postal_code": "V8A1B2"
}
],
"id_documents": [{
"type": "Passport",
"number": "123412kdsdsk",
"issuing_country": "US",
"issuing_province_state": "WA",
"issue_date": "2000-12-12",
"expiry_date": "2000-12-12"
}
],
"dates_of_birth": [{
"date_of_birth": "2000-12-12"
}
]
}
],
"scan_status": {
"national_sex_offender_registry_scan": "Complete",
"security_watch_list_scan": "Complete",
"fraud_scan": "Complete",
"ofac_global_sanctions_scan": "Complete",
"ssn_verification_scan": "Complete",
"criminal_record_scan": "Complete",
"federal_record_scan": "Incomplete",
"single_state_county_record_scan": "Incomplete",
"all_state_county_record_scan": "Incomplete"
},
"record_check_requests": [{
"status": "Complete",
"state": "OH",
"county": "Kershaw",
"district": "District 1",
"fips_code": 12312,
"search_type": "Criminal/Court Database Search"
}
]
},
"verification_result": {
"id": "a123b4cd-1a23-1a23-12a3-a123456b7890",
"status": "ANALYZING",
"status_label": "Analyzing",
"overall_score": "PASS",
"overall_score_label": "Pass",
"red_flags": [
"This may indicate the applicant is high risk."
],
"green_flags": [
"This may indicate the applicant is low risk."
],
"result": "REVIEW",
"result_label": "Review",
"employment_verification": "VERIFIED",
"education_verification": "VERIFIED",
"credential_verification": "VERIFIED",
"certn_verification": "VERIFIED",
"employer_verification_results": {
"id": "a123b4cd-1a23-1a23-12a3-a123456b7890",
"status": "ANALYZING",
"status_label": "Analyzing",
"overall_score": "PASS",
"overall_score_label": "Pass",
"red_flags": [
"This may indicate the applicant is high risk."
],
"green_flags": [
"This may indicate the applicant is low risk."
],
"result": "REVIEW",
"result_label": "Review",
"certn_verification": "VERIFIED",
"company_name_verified": false,
"position_name_verified": false,
"income_verified": false,
"employment_dates_verified": true,
"verification_notes": "Verification notes!",
"employer": {
"company_name": "string",
"position": "string",
"income": 8500,
"pay_period": "PER_HOUR",
"start_date": "2021-11-12",
"end_date": "2021-11-12",
"certn_verification": "VERIFIED",
"verification_notes": "string",
"employer_reference": {
"email": {
"address": "[email protected]"
},
"phone_number": {
"phone_type": "NONE",
"number": "+1 250 555 1234",
"country": "string"
},
"name": {
"first_name": "string",
"middle_name": "string",
"last_name": "string"
},
"contact": {
"can_contact": true,
"can_contact_after_date": "2021-11-12"
}
}
}
},
"education_verification_results": {
"id": "a123b4cd-1a23-1a23-12a3-a123456b7890",
"status": "ANALYZING",
"status_label": "Analyzing",
"overall_score": "PASS",
"overall_score_label": "Pass",
"red_flags": [
"This may indicate the applicant is high risk."
],
"green_flags": [
"This may indicate the applicant is low risk."
],
"result": "REVIEW",
"result_label": "Review",
"certn_verification": "VERIFIED",
"specializations_verified": false,
"degree_verified": false,
"institution_verified": false,
"enrolment_dates_verified": true,
"verification_notes": "Verification notes!",
"education": {
"institution": "string",
"degree": {
"degree": "2021-11-12",
"verified": true
},
"address": {
"address": "4412 King Alfred Court",
"unit": 100,
"city": "Victoria",
"province_state": "BC",
"country": "CA",
"postal_code": "V8A1B2"
},
"start_date": "2021-11-12",
"end_date": "2021-11-12",
"certn_verification": "VERIFIED",
"verification_notes": "string"
}
},
"credential_verification_results": {
"id": "a123b4cd-1a23-1a23-12a3-a123456b7890",
"status": "ANALYZING",
"status_label": "Analyzing",
"overall_score": "PASS",
"overall_score_label": "Pass",
"red_flags": [
"This may indicate the applicant is high risk."
],
"green_flags": [
"This may indicate the applicant is low risk."
],
"result": "REVIEW",
"result_label": "Review",
"certn_verification": "VERIFIED",
"certification_date_verified": false,
"certification_verified": false,
"institution_verified": true,
"verification_notes": "Verification notes!",
"credential": {
"description": "string",
"institution": "string",
"certification": "string",
"date_of_certification": "2021-11-12",
"current": true,
"certn_verification": "VERIFIED",
"verification_notes": "string"
}
}
},
"international_criminal_record_check_result": {
"id": "a123b4cd-1a23-1a23-12a3-a123456b7890",
"status": "ANALYZING",
"status_label": "Analyzing",
"overall_score": "PASS",
"overall_score_label": "Pass",
"red_flags": [
"This may indicate the applicant is high risk."
],
"green_flags": [
"This may indicate the applicant is low risk."
],
"result": "REVIEW",
"result_label": "Review"
},
"motor_vehicle_record_result": {
"id": "a123b4cd-1a23-1a23-12a3-a123456b7890",
"status": "ANALYZING",
"status_label": "Analyzing",
"overall_score": "PASS",
"overall_score_label": "Pass",
"red_flags": [
"This may indicate the applicant is high risk."
],
"green_flags": [
"This may indicate the applicant is low risk."
],
"result": "REVIEW",
"result_label": "Review"
},
"damage_to_property": 0,
"damage_to_property_label": "High",
"eviction_potential": 0,
"eviction_potential_label": "High",
"late_rent_potential": 0,
"late_rent_potential_label": "High",
"tenancy_length": 0,
"tenancy_length_label": "High"
}
{
"id": string <uuid>,
"created": string <date-time>,
"modified": string <date-time>,
"tag": string,
"(request_flags)": boolean
"last_updated": string <date-time>,
"submitted_time": string <date-time>,
"is_submitted": boolean,
"applicant_type": string <Enum>,
"report_status": string <Enum>,
"status": string <Enum>,
"status_label": string <Enum>,
"result": string <Enum>,
"result_label": string <Enum>,
"certn_score": number,
"certn_score_label": string <Enum>,
"applicant_account": {
"id": string,
"email": string
},
"application": {
object (Application)
},
"country": "CA",
"information": {
object (Information)
},
"employment_verification": string <VerificationEnum>,
"education_verification": string <VerificationEnum>,
"credential_verification": string <VerificationEnum>,
"reference_result": {
object (BasePackageResult)
},
"information_result": {
object (BasePackageResult)
},
"risk_result": {
object (RiskResult)
},
"equifax_result": {
object (EquifaxResult)
},
"identity_verified": boolean,
"employment_verified": boolean,
"identity_verification": {
object (Identity Verification)
},
"enhanced_identity_verification": {
object (EnhancedIdentityVerification)
},
"manual_id_verification": {
object (ManualIDVerification)
},
"rcmp_result": {
object (BasePackageResult)
},
"us_criminal_record_check_result": {
object (USCriminalRecordCheckResult)
},
"verification_result": {
object (VerificationResult)
},
"international_criminal_record_check_result": {
object (BasePackageResult)
},
"motor_vehicle_record_result": {
object (BasePackageResult)
},
"salary": number,
"sufficient_salary": boolean,
"high_risk_vulnerable_sector": boolean,
"job_safety_undue_risk": boolean,
"early_termination": number,
"early_termination_label": string <Enum>,
"reliability_risk": number,
"reliability_risk_label": string <Enum>,
"workplace_misconduct": number,
"workplace_misconduct_label": string <Enum>
}{
"id": "a123b4cd-1a23-1a23-12a3-a123456b7890",
"created": "2021-11-12T21:21:50Z",
"modified": "2021-11-12T21:21:50Z",
"tag": "Sub-Client 123",
"request_base": false,
"request_behavioural": false,
"request_softcheck": true,
"request_us_ssn_verification": false,
"request_equifax": true,
"request_identity_verification": false,
"request_enhanced_identity_verification": false,
"request_criminal_record_check": false,
"request_enhanced_criminal_record_check": false,
"request_us_criminal_record_check_tier_1": false,
"request_us_criminal_record_check_tier_2": false,
"request_us_criminal_record_check_tier_3": false,
"request_international_criminal_record_check": false,
"request_motor_vehicle_records": false,
"request_employment_verification": false,
"request_education_verification": false,
"request_credential_verification": false,
"request_employer_references": false,
"request_address_references": false,
"request_employer_phone_references": false,
"request_address_phone_references": false,
"request_instant_verify_employment": false,
"request_instant_verify_education": false,
"request_instant_verify_credential": false,
"last_updated": "2021-11-12T21:21:50Z",
"submitted_time": "2021-11-12T21:21:50Z",
"is_submitted": true,
"applicant_type": "STANDARD",
"report_status": "IN_PROGRESS",
"status": "Pending",
"status_label": "Pending",
"result": "REVIEW",
"result_label": "Review",
"certn_score": 85,
"certn_score_label": "PASS",
"applicant_account": {
"id": "string",
"email": "string"
},
"application": {
"id": "a123b4cd-1a23-1a23-12a3-a123456b7890",
"created": "2021-11-12T21:21:50Z",
"modified": "2021-11-12T21:21:50Z",
"email": "string"
},
"country": "CA",
"information": {
"id": "a123b4cd-1a23-1a23-12a3-a123456b7890",
"created": "2021-11-12T21:21:50Z",
"modified": "2021-11-12T21:21:50Z",
"first_name": "Sebastien",
"middle_name": "Jack Pierre",
"last_name": "Normandin",
"last_name_at_birth": "string",
"former_names": "string",
"alias": "string",
"date_of_birth": "2021-11-12",
"phone_number": "250-123-1234",
"sin_ssn": 123123123,
"gender": "M",
"birth_city": "string",
"birth_province_state": "string",
"birth_other_province_state": "string",
"birth_country": "string",
"license_number": "string",
"license_valid": true,
"license_prov_state": "string",
"license_other_country": true,
"license_type": "CA",
"cover_letter": "string",
"addresses": [
{
"address": "4412 King Alfred Court",
"unit": 100,
"city": "Victoria",
"province_state": "BC",
"country": "CA",
"postal_code": "V8A1B2",
"rent_or_own": "R",
"cost": 0,
"start_date": "2021-11-12",
"end_date": "2021-11-12",
"certn_verification": "VERIFIED",
"verification_notes": "string",
"address_reference": {
"email": {
"address": "[email protected]"
},
"phone_number": {
"phone_type": "NONE",
"number": "+1 250 555 1234",
"country": "string"
},
"name": {
"first_name": "string",
"middle_name": "string",
"last_name": "string"
},
"contact": {
"can_contact": true,
"can_contact_after_date": "2021-11-12"
}
}
}
],
"employers": [
{
"company_name": "string",
"position": "string",
"income": 8500,
"pay_period": "PER_HOUR",
"start_date": "2021-11-12",
"end_date": "2021-11-12",
"certn_verification": "VERIFIED",
"verification_notes": "string",
"employer_reference": {
"email": {
"address": "[email protected]"
},
"phone_number": {
"phone_type": "NONE",
"number": "+1 250 555 1234",
"country": "string"
},
"name": {
"first_name": "string",
"middle_name": "string",
"last_name": "string"
},
"contact": {
"can_contact": true,
"can_contact_after_date": "2021-11-12"
}
}
}
],
"educations": [
{
"institution": "string",
"degree": {
"degree": "2021-11-12",
"verified": true
},
"address": {
"address": "4412 King Alfred Court",
"unit": 100,
"city": "Victoria",
"province_state": "BC",
"country": "CA",
"postal_code": "V8A1B2"
},
"start_date": "2021-11-12",
"end_date": "2021-11-12",
"certn_verification": "VERIFIED",
"verification_notes": "string"
}
],
"convictions": [
{
"offense": 2002,
"date_of_sentence": "2000-01-01T00:00:00.000Z",
"court_location": "Toronto, ON, Canada",
"description": "Robbery; Theft over $200"
}
]
},
"employment_verification": "VERIFIED",
"education_verification": "VERIFIED",
"credential_verification": "VERIFIED",
"reference_result": {
"id": "a123b4cd-1a23-1a23-12a3-a123456b7890",
"status": "ANALYZING",
"status_label": "Analyzing",
"overall_score": "PASS",
"overall_score_label": "Pass",
"red_flags": [
"This may indicate the applicant is high risk."
],
"green_flags": [
"This may indicate the applicant is low risk."
],
"result": "REVIEW",
"result_label": "Review"
},
"information_result": {
"id": "a123b4cd-1a23-1a23-12a3-a123456b7890",
"status": "ANALYZING",
"status_label": "Analyzing",
"overall_score": "PASS",
"overall_score_label": "Pass",
"red_flags": [
"This may indicate the applicant is high risk."
],
"green_flags": [
"This may indicate the applicant is low risk."
],
"result": "REVIEW",
"result_label": "Review"
},
"behavioural_result": {
"id": "a123b4cd-1a23-1a23-12a3-a123456b7890",
"status": "ANALYZING",
"status_label": "Analyzing",
"overall_score": "PASS",
"overall_score_label": "Pass",
"red_flags": [
"This may indicate the applicant is high risk."
],
"green_flags": [
"This may indicate the applicant is low risk."
],
"result": "REVIEW",
"result_label": "Review"
},
"risk_result": {
"id": "a123b4cd-1a23-1a23-12a3-a123456b7890",
"status": "ANALYZING",
"status_label": "Analyzing",
"overall_score": "PASS",
"overall_score_label": "Pass",
"red_flags": [
"This may indicate the applicant is high risk."
],
"green_flags": [
"This may indicate the applicant is low risk."
],
"result": "REVIEW",
"result_label": "Review",
"risk_evaluations": [
{
"id": "a123b4cd-1a23-1a23-12a3-a123456b7890",
"overall_score": "PASS",
"risk_information_result": {},
"criminal_results": [
{
"confidence": 0,
"confidence_label": "Likely",
"overall_score": "PASS",
"criminal_identity": {
"criminal_cases": [
{
"case_type": "Criminal",
"number": "123asd",
"file_date": "2000-12-12",
"judgment_date": "2000-12-12",
"summary_description": "The case filings summary description",
"full_description": "string",
"notes": "No additional case notes available",
"court": {
"court": "Seattle Superior Court",
"court_type": "Criminal",
"docket_number": "545fjd",
"filed_date": "2000-12-12",
"served_date": "2000-12-12",
"trial_date": "2000-12-12",
"jurisdiction": "Seattle County"
},
"criminal_charges": [
{
"offense_description": "Breach of peace",
"offense_date": "2000-12-12",
"offense_type": "Felony",
"plea": "Not Guilty",
"hearing_date": "2000-12-12",
"hearing_type": "Open court hearing",
"probation": "No probation given",
"community_service": "No community service given",
"sentence_suspended": "None",
"fines": "No fines given",
"fines_paid_status": "Fines not paid",
"fines_paid_date": "2000-12-12",
"cost": "200",
"restitution": "None",
"transferred_jurisdiction": "Transferred from Seattle",
"transferred_case_number": "690330",
"active_warrant": "No active warrant",
"jail_time": "6 months jail time",
"prison_time": "6 months prison time",
"charge_in_progress": "no charge in progress",
"charge": "Vehicular manslaughter two counts",
"charge_level": "Felony",
"charge_class": "None",
"dispositions": [
{
"offense_description": "Speeding",
"offense_type": "Infraction",
"offense_date": "2000-12-12",
"description": "Description of the disposition offense",
"disposition_date": "2000-12-12",
"statue": "20-1212(B)",
"offense_class": "The offense class description",
"final_plea": "Not Guilty",
"disposition_description": "The description of the dispostion"
}
],
"arrests": [
{
"arrest_date": "2000-12-12",
"booking_number": "42069",
"citation_number": "247365",
"arresting_agency": "KERSHAW COUNTY DETENTION CENTER",
"offense_type": "Misdemeanor",
"offense_description": "A description of the arresting offense",
"counts": "Arrest has 6 counts"
}
],
"sentences": [
{
"sentence_type": "Community Service and Fines",
"duration": "6 months",
"amount": "100",
"amount_paid": "50",
"paid": "Half the fine has been paid",
"qualifier": "The sentence has no qualifier information",
"description": "The sentence description",
"effective_date": "2000-12-12",
"appearance_date": "2000-12-12",
"appearance_finding": "There are no appearance findings to detail about the sentence"
}
],
"additional_informations": [
{
"description": "More case information was found.",
"additional_description": "None",
"event_date": "2000-12-12"
}
]
}
]
}
],
"criminal_alerts": [
{
"parent_category": "FRAUD",
"category": "Burglary",
"stage": "Conviction",
"type": "Citation",
"description": "Convicted of burglary",
"date": "2000-12-12",
"parent_category_label": "Fraud"
}
],
"criminal_sources": [
{
"name": "World News",
"url": "worldnews.com",
"date": "2000-12-12",
"format": "Online Media",
"headline": "Burglary Conviction for Area Man",
"publication_source": "World News Conglomerate",
"publisher": "World News"
}
],
"criminal_addresses": [
{
"start_date": "2000-12-12",
"end_date": "2000-12-12",
"unit": "1a",
"address": "123 fort st.",
"city": "Victoria",
"province_state": "BC",
"country": "Canda",
"postal_code": "V8X2C3"
}
],
"criminal_additional_informations": [
{
"aliases": [
"willy will",
"billy bill"
],
"dates_of_birth": [
"2000-12-12"
],
"name": {
"first_name": "string",
"middle_name": "string",
"last_name": "string"
}
}
]
}
}
]
}
]
},
"equifax_result": {
"id": "a123b4cd-1a23-1a23-12a3-a123456b7890",
"status": "ANALYZING",
"status_label": "Analyzing",
"overall_score": "PASS",
"overall_score_label": "Pass",
"red_flags": [
"This may indicate the applicant is high risk."
],
"green_flags": [
"This may indicate the applicant is low risk."
],
"result": "REVIEW",
"result_label": "Review",
"description": "The financial score is based on self-provided information from the applicant and an analysis of the applicant's information available to Certn. This includes a credit check, Equifax record analysis, as well as other important informational data points",
"total_debt": 100,
"upgradable": false,
"trades": [
{
"credit_grantor": "RBC",
"payment_status": "Up to date",
"date_opened": "2000-12-12",
"account_rating": "High",
"date_reported": "2000-12-12",
"account_type": "Revolving",
"high_credit": 2000,
"balance_amount": 1000,
"last_activity_or_payment": "Paid as up to date",
"r_code": "R-1",
"percent_credit_used": 50,
"account_number": "112ksjd",
"past_due_amount": 0,
"payment_term_amount": 120,
"months_reviewed": 15,
"narratives": [
"Account has been paid in full."
]
}
],
"employers": [
{
"employment": "Subject's Current Employer",
"occupation": "Software",
"employer": "Certn",
"city": "Victoria",
"province": "BC",
"verification": true,
"salary": 1000000
}
],
"addresses": [
{
"address": "123 fort st.",
"civic_number": 123,
"street_name": "fort st.",
"city": "Victoria",
"province": "BC"
}
],
"collections": [
{
"date_of_last_payment": "2000-12-12",
"creditor": "Boys Club",
"amount_owed": 10000,
"amount_paid": 50,
"ledger_number": "123aslld",
"date_paid": "2000-12-12T00:00:00.000Z",
"date_reported": "2000-12-12T00:00:00.000Z",
"assigned_date": "2012-12-12T00:00:00.000Z",
"verification_date": "2000-12-12T00:00:00.000Z",
"account_designation": "Individual",
"first_deliquency": "2000-12-12T00:00:00.000Z",
"agency_entity": "GQC123",
"reason": "Credit not paid on in full",
"description": "Parking ticket"
}
],
"deposit_alerts": [
{
"customer_entity": "RBC",
"date_reported": "2000-12-12T00:00:00.000Z",
"account_type": "Business",
"date_opened": "2000-12-12T00:00:00.000Z",
"date_closed": "2000-12-12T00:00:00.000Z",
"date_written_off": "2000-12-12T00:00:00.000Z",
"amount_written_off": 2000,
"alert_status": "High",
"alert_status_date": "2000-12-12T00:00:00.000Z"
}
],
"bankruptcies": [
{
"account_type": "Individual",
"liability_amount": 2000,
"asset_amount": 20000,
"customer": "CRED COUNSELLING SOC",
"case_number_and_trustee": "12312 CE ASSOCIATES",
"filer": "Subject",
"legal_narrative": "No legal information available",
"date_filed": "2000-12-12T00:00:00.000Z",
"intent_or_disposition": "Discharged"
}
],
"judgments": [
{
"plaintiff": "Fred Rickleson",
"defendant": "Rick Frederickson",
"amount": 1000.21,
"date_filed": "2000-12-12T00:00:00.000Z",
"date_satisfied": "2000-12-12T00:00:00.000Z",
"verification_date": "2000-12-12T00:00:00.000Z",
"court_entity": "RBC",
"garnishee": "RBC",
"description": "Fred sued Rick"
}
],
"legal_items": [
{
"case_number": "1232djdsj",
"verification_date": "2000-12-12T00:00:00.000Z",
"update_source_code": "Tape rptd",
"date_filed": "2000-12-12T00:00:00.000Z",
"court_entity": "Toronto small claims",
"status_code": "Satisfied",
"date_satisfied": "2000-12-12T00:00:00.000Z",
"amount": 10000,
"defendant": "John Smithy",
"plaintiff": "Smith Johny",
"lawyer_name_address": "Johnson LLC 123 fort st Victoria",
"legal_item_description": "It was very bad deal"
}
],
"liens": [
{
"amount": 1000,
"date_filed": "1999-12-12T00:00:00.000Z",
"lien_class": "Class A",
"date_released": "1990-12-12T00:00:00.000Z",
"date_verified": "1990-12-12T00:00:00.000Z",
"court_entity": "Superior Court.",
"case_number": "123asda",
"lien_description": "Lien on house."
}
],
"secured_loans": [
{
"date_filed": "1990-12-12T00:00:00.000Z",
"court_entity": "Superior",
"creditor_name_address": "RBC 123 Main st.",
"creditor_industry_code": "620a",
"maturity_date": "1990-12-12T00:00:00.000Z"
}
],
"fraud_warnings": [
{
"product_description": "Fraud warnings are warnings of fraud.",
"message_priority": "Very high",
"message_code": "123a",
"message_description": "High fraud alert for bank fraud"
}
],
"non_sufficient_funds": [
{
"date_reported": "1990-12-12T00:00:00.000Z",
"creditor_entity": "RBC",
"nsfamount": 1000.2,
"details": "No sufficient funds in savings account.",
"verification_date": "1990-12-12T00:00:00.000Z"
}
],
"credit_file_metadatas": [
{
"hit_strength_indicator": "HIT",
"request_number": "123asd",
"address_discrepancy": "No discrepancy found in address",
"customer_number": "123asd",
"report_id": "123asd",
"file_since_date": "1990-12-12T00:00:00.000Z",
"date_of_last_activity": "1990-12-12T00:00:00.000Z",
"date_of_request": "1990-12-12T00:00:00.000Z",
"hit": "Big Hit",
"data_warning_messages": [
"No data warning messages"
],
"card_alert_warning_messages": [
"Credit card on high alert"
],
"alert_indicators": [
"No messages"
]
}
],
"other_incomes": [
{
"date_reported": "1990-12-12T00:00:00.000Z",
"income_source": "RBC",
"amount": 1000000,
"verification_date": "1990-12-12T00:00:00.000Z"
}
],
"consumer_statements": [
{
"date_reported": "1990-12-12T00:00:00.000Z",
"statement": "No consumer statement available."
}
],
"bank_accounts": [
{
"account": "Personal checking",
"date_reported": "1990-12-12T00:00:00.000Z",
"creditor_entity": "RBC",
"account_number": "123asd",
"figure_amount": 1000.12,
"date_opened": "1990-12-12T00:00:00.000Z",
"account_type": "Checking",
"status": "active",
"number_of_nsf": 0
}
],
"local_inquiries": [
{
"inquiry_date": "1990-12-12T00:00:00.000Z",
"customer_name": "Certn"
}
],
"foreign_inquiries": [
{
"inquiry_date": "1990-12-12T00:00:00.000Z",
"city_name_or_inquiry_number": "Seattle",
"inquiry_province": "WA"
}
]
},
"identity_verified": true,
"employment_verified": true,
"identity_verification": {
"id": "a123b4cd-1a23-1a23-12a3-a123456b7890",
"created": "2021-11-12T21:21:50Z",
"modified": "2021-11-12T21:21:50Z",
"status": "A",
"result": "VERIFIED"
},
"enhanced_identity_verification": {
"id": "a123b4cd-1a23-1a23-12a3-a123456b7890",
"created": "2021-11-12T21:21:50Z",
"modified": "2021-11-12T21:21:50Z",
"status": "A",
"result": "VERIFIED"
},
"manual_id_verification": {
"id": "a123b4cd-1a23-1a23-12a3-a123456b7890",
"created": "2021-11-12T21:21:50Z",
"modified": "2021-11-12T21:21:50Z",
"status": "A",
"result": "VERIFIED"
},
"rcmp_result": {
"id": "a123b4cd-1a23-1a23-12a3-a123456b7890",
"status": "ANALYZING",
"status_label": "Analyzing",
"overall_score": "PASS",
"overall_score_label": "Pass",
"red_flags": [
"This may indicate the applicant is high risk."
],
"green_flags": [
"This may indicate the applicant is low risk."
],
"result": "REVIEW",
"result_label": "Review"
},
"us_criminal_record_check_result": {
"id": "a123b4cd-1a23-1a23-12a3-a123456b7890",
"status": "ANALYZING",
"status_label": "Analyzing",
"overall_score": "PASS",
"overall_score_label": "Pass",
"red_flags": [
"This may indicate the applicant is high risk."
],
"green_flags": [
"This may indicate the applicant is low risk."
],
"result": "REVIEW",
"result_label": "Review",
"criminal_cases": [
{
"case_type": "Criminal",
"number": "123asd",
"file_date": "2000-12-12",
"judgment_date": "2000-12-12",
"summary_description": "The case filings summary description",
"full_description": "string",
"notes": "No additional case notes available",
"court": {
"court": "Seattle Superior Court",
"court_type": "Criminal",
"docket_number": "545fjd",
"filed_date": "2000-12-12",
"served_date": "2000-12-12",
"trial_date": "2000-12-12",
"jurisdiction": "Seattle County"
},
"criminal_charges": [
{
"offense_description": "Breach of peace",
"offense_date": "2000-12-12",
"offense_type": "Felony",
"plea": "Not Guilty",
"hearing_date": "2000-12-12",
"hearing_type": "Open court hearing",
"probation": "No probation given",
"community_service": "No community service given",
"sentence_suspended": "None",
"fines": "No fines given",
"fines_paid_status": "Fines not paid",
"fines_paid_date": "2000-12-12",
"cost": "200",
"restitution": "None",
"transferred_jurisdiction": "Transferred from Seattle",
"transferred_case_number": "690330",
"active_warrant": "No active warrant",
"jail_time": "6 months jail time",
"prison_time": "6 months prison time",
"charge_in_progress": "no charge in progress",
"charge": "Vehicular manslaughter two counts",
"charge_level": "Felony",
"charge_class": "None",
"dispositions": [
{
"offense_description": "Speeding",
"offense_type": "Infraction",
"offense_date": "2000-12-12",
"description": "Description of the disposition offense",
"disposition_date": "2000-12-12",
"statue": "20-1212(B)",
"offense_class": "The offense class description",
"final_plea": "Not Guilty",
"disposition_description": "The description of the dispostion"
}
],
"arrests": [
{
"arrest_date": "2000-12-12",
"booking_number": "42069",
"citation_number": "247365",
"arresting_agency": "KERSHAW COUNTY DETENTION CENTER",
"offense_type": "Misdemeanor",
"offense_description": "A description of the arresting offense",
"counts": "Arrest has 6 counts"
}
],
"sentences": [
{
"sentence_type": "Community Service and Fines",
"duration": "6 months",
"amount": "100",
"amount_paid": "50",
"paid": "Half the fine has been paid",
"qualifier": "The sentence has no qualifier information",
"description": "The sentence description",
"effective_date": "2000-12-12",
"appearance_date": "2000-12-12",
"appearance_finding": "There are no appearance findings to detail about the sentence"
}
],
"additional_informations": [
{
"description": "More case information was found.",
"additional_description": "None",
"event_date": "2000-12-12"
}
]
}
]
}
],
"ssn_id_document_reports": [
{
"ssn_result": "Discrepancy",
"ssn_status": "Complete",
"names": [
{
"first_name": "string",
"middle_name": "string",
"last_name": "string"
}
],
"addresses": [
{
"address": "4412 King Alfred Court",
"unit": 100,
"city": "Victoria",
"province_state": "BC",
"country": "CA",
"postal_code": "V8A1B2"
}
],
"id_documents": [
{
"type": "Passport",
"number": "123412kdsdsk",
"issuing_country": "US",
"issuing_province_state": "WA",
"issue_date": "2000-12-12",
"expiry_date": "2000-12-12"
}
],
"dates_of_birth": [
{
"date_of_birth": "2000-12-12"
}
]
}
],
"scan_status": {
"national_sex_offender_registry_scan": "Complete",
"security_watch_list_scan": "Complete",
"fraud_scan": "Complete",
"ofac_global_sanctions_scan": "Complete",
"ssn_verification_scan": "Complete",
"criminal_record_scan": "Complete",
"federal_record_scan": "Incomplete",
"single_state_county_record_scan": "Incomplete",
"all_state_county_record_scan": "Incomplete"
},
"record_check_requests": [
{
"status": "Complete",
"state": "OH",
"county": "Kershaw",
"district": "District 1",
"fips_code": 12312,
"search_type": "Criminal/Court Database Search"
}
]
},
"verification_result": {
"id": "a123b4cd-1a23-1a23-12a3-a123456b7890",
"status": "ANALYZING",
"status_label": "Analyzing",
"overall_score": "PASS",
"overall_score_label": "Pass",
"red_flags": [
"This may indicate the applicant is high risk."
],
"green_flags": [
"This may indicate the applicant is low risk."
],
"result": "REVIEW",
"result_label": "Review",
"employment_verification": "VERIFIED",
"education_verification": "VERIFIED",
"credential_verification": "VERIFIED",
"certn_verification": "VERIFIED",
"employer_verification_results": {
"id": "a123b4cd-1a23-1a23-12a3-a123456b7890",
"status": "ANALYZING",
"status_label": "Analyzing",
"overall_score": "PASS",
"overall_score_label": "Pass",
"red_flags": [
"This may indicate the applicant is high risk."
],
"green_flags": [
"This may indicate the applicant is low risk."
],
"result": "REVIEW",
"result_label": "Review",
"certn_verification": "VERIFIED",
"company_name_verified": false,
"position_name_verified": false,
"income_verified": false,
"employment_dates_verified": true,
"verification_notes": "Verification notes!",
"employer": {
"company_name": "string",
"position": "string",
"income": 8500,
"pay_period": "PER_HOUR",
"start_date": "2021-11-12",
"end_date": "2021-11-12",
"certn_verification": "VERIFIED",
"verification_notes": "string",
"employer_reference": {
"email": {
"address": "[email protected]"
},
"phone_number": {
"phone_type": "NONE",
"number": "+1 250 555 1234",
"country": "string"
},
"name": {
"first_name": "string",
"middle_name": "string",
"last_name": "string"
},
"contact": {
"can_contact": true,
"can_contact_after_date": "2021-11-12"
}
}
}
},
"education_verification_results": {
"id": "a123b4cd-1a23-1a23-12a3-a123456b7890",
"status": "ANALYZING",
"status_label": "Analyzing",
"overall_score": "PASS",
"overall_score_label": "Pass",
"red_flags": [
"This may indicate the applicant is high risk."
],
"green_flags": [
"This may indicate the applicant is low risk."
],
"result": "REVIEW",
"result_label": "Review",
"certn_verification": "VERIFIED",
"specializations_verified": false,
"degree_verified": false,
"institution_verified": false,
"enrolment_dates_verified": true,
"verification_notes": "Verification notes!",
"education": {
"institution": "string",
"degree": {
"degree": "2021-11-12",
"verified": true
},
"address": {
"address": "4412 King Alfred Court",
"unit": 100,
"city": "Victoria",
"province_state": "BC",
"country": "CA",
"postal_code": "V8A1B2"
},
"start_date": "2021-11-12",
"end_date": "2021-11-12",
"certn_verification": "VERIFIED",
"verification_notes": "string"
}
},
"credential_verification_results": {
"id": "a123b4cd-1a23-1a23-12a3-a123456b7890",
"status": "ANALYZING",
"status_label": "Analyzing",
"overall_score": "PASS",
"overall_score_label": "Pass",
"red_flags": [
"This may indicate the applicant is high risk."
],
"green_flags": [
"This may indicate the applicant is low risk."
],
"result": "REVIEW",
"result_label": "Review",
"certn_verification": "VERIFIED",
"certification_date_verified": false,
"certification_verified": false,
"institution_verified": true,
"verification_notes": "Verification notes!",
"credential": {
"description": "string",
"institution": "string",
"certification": "string",
"date_of_certification": "2021-11-12",
"current": true,
"certn_verification": "VERIFIED",
"verification_notes": "string"
}
}
},
"international_criminal_record_check_result": {
"id": "a123b4cd-1a23-1a23-12a3-a123456b7890",
"status": "ANALYZING",
"status_label": "Analyzing",
"overall_score": "PASS",
"overall_score_label": "Pass",
"red_flags": [
"This may indicate the applicant is high risk."
],
"green_flags": [
"This may indicate the applicant is low risk."
],
"result": "REVIEW",
"result_label": "Review"
},
"motor_vehicle_record_result": {
"id": "a123b4cd-1a23-1a23-12a3-a123456b7890",
"status": "ANALYZING",
"status_label": "Analyzing",
"overall_score": "PASS",
"overall_score_label": "Pass",
"red_flags": [
"This may indicate the applicant is high risk."
],
"green_flags": [
"This may indicate the applicant is low risk."
],
"result": "REVIEW",
"result_label": "Review"
},
"instant_verify_result": {
"instant_verify_employment": {
"id": "a123b4cd-1a23-1a23-12a3-a123456b7890",
"status": "ANALYZING",
"status_label": "Analyzing",
"overall_score": "PASS",
"overall_score_label": "Pass",
"red_flags": [
"This may indicate the applicant is high risk."
],
"green_flags": [
"This may indicate the applicant is low risk."
],
"result": "REVIEW",
"result_label": "Review",
"instant_verify_employment_result": [
{
"verification_status": "VERIFIED",
"verifications_scale": 0.8,
"label_source_data": "Tiger Keeping",
"label_verifier_data": "Keeping of Tigers",
"org_source_data": "The Greater Wynnewood Exotic Animal Park",
"org_verifier_data": "The Greater Wynnewood Exotic Animal Park",
"dates_source_data": "Feb - Sept 2020",
"dates_verifier_data": "Feb - Sept 2020"
}
]
},
"instant_verify_education": {
"id": "a123b4cd-1a23-1a23-12a3-a123456b7890",
"status": "ANALYZING",
"status_label": "Analyzing",
"overall_score": "PASS",
"overall_score_label": "Pass",
"red_flags": [
"This may indicate the applicant is high risk."
],
"green_flags": [
"This may indicate the applicant is low risk."
],
"result": "REVIEW",
"result_label": "Review",
"instant_verify_education_result": [
{
"verification_status": "VERIFIED",
"verifications_scale": 0.8,
"label_source_data": "Exploring Level 1",
"label_verifier_data": "Exploring 1",
"org_source_data": "DZ Center",
"org_verifier_data": "DZ Center",
"dates_source_data": "Feb - Sept 2020",
"dates_verifier_data": "Feb - Sept 2020"
}
]
},
"instant_verify_credential": {
"id": "a123b4cd-1a23-1a23-12a3-a123456b7890",
"status": "ANALYZING",
"status_label": "Analyzing",
"overall_score": "PASS",
"overall_score_label": "Pass",
"red_flags": [
"This may indicate the applicant is high risk."
],
"green_flags": [
"This may indicate the applicant is low risk."
],
"result": "REVIEW",
"result_label": "Review",
"instant_verification_credential_result": [
{
"verification_status": "VERIFIED",
"verifications_scale": 0.8,
"label_source_data": "CPR",
"label_verifier_data": "CPR Care Giver",
"org_source_data": "Red Cross",
"org_verifier_data": "Red Cross",
"dates_source_data": "Feb - Sept 2020",
"dates_verifier_data": "Feb - Sept 2020"
}
]
}
},
"damage_to_property": 0,
"damage_to_property_label": "High",
"eviction_potential": 0,
"eviction_potential_label": "High",
"late_rent_potential": 0,
"late_rent_potential_label": "High",
"tenancy_length": 0,
"tenancy_length_label": "High"
}{
"count": int,
"next": URL,
"previous": URL,
"results": [
{
"request_identity_verification": boolean,
"request_equifax": boolean,
"request_base": boolean,
"request_instant_verify_employment": boolean,
"request_instant_verify_education": boolean,
"request_instant_verify_credential": boolean,
"request_international_criminal_record_check": boolean,
"request_enhanced_identity_verification": boolean,
"request_motor_vehicle_records": boolean,
"request_criminal_record_check": boolean,
"request_enhanced_criminal_record_check": boolean,
"request_vulnerable_sector_criminal_record_check": boolean,
"request_employer_references": boolean,
"request_address_references": boolean,
"request_employer_phone_references": boolean,
"request_address_phone_references": boolean,
"request_softcheck": boolean,
"request_social_media_check": boolean,
"request_soquij": boolean,
"request_us_criminal_record_check_tier_1": boolean,
"request_us_criminal_record_check_tier_2": boolean,
"request_us_criminal_record_check_tier_3": boolean,
"request_education_verification": boolean,
"request_credential_verification": boolean,
"request_employment_verification": boolean,
"request_vaccination_check": boolean,
"request_right_to_work": boolean,
"request_uk_basic_dbs_check": boolean,
"request_uk_basic_ds_check": boolean,
"request_uk_right_to_work_check": boolean,
"id": string <uuid>,
"short_uid": string,
"last_updated": string <date-time>,
"report_status": string <Enum>,
"is_cosigner": boolean,
"information": {
"first_name": string,
"last_name": string
},
"applicant_account": {
"id": string <uuid>,
"email": string,
"email_verified": boolean,
"phone_number": string
},
"application": {
"applicants": [
{
"id": string <uuid>,
"first_name": string,
"last_name": string,
"email": string,
"phone_number": string,
"share_of_rent": float,
"is_cosigner": boolean,
"application_url": URL,
"report_url": URL,
"status": string <Enum>
}
],
"owner": {
"email": string
},
"is_active": boolean,
"team": {
"name": string
},
"listing": object(Listing)
},
"can_upgrade": boolean,
"is_equifax_eligible": boolean,
"can_resend_email": boolean,
"resend_email_time": string <date-time>,
"report_summary": {
"reference_result": object(BasePackageResult),
"rcmp_result": object(RCMPResult),
"equifax_result": object(EquifaxResult),
"information_result": object(BasePackageResult),
"instant_verify_result": object(BasePackageResult),
"international_criminal_record_check_result": object(InternationalCriminalRecordCheckResult),
"motor_vehicle_record_result": object(MotorVehicleRecordResult),
"social_media_check_result": object(SocialMediaCheckResult),
"risk_result": object(RiskResult),
"soquij_result": object(SoquijResult),
"uk_basic_dbs_check_result": object(UKBasicDBSCheckResult),
"uk_basic_ds_check_result": object(UKBasicDSCheckResult),
"uk_right_to_work_check_result": object(UKRightToWorkResult),
"us_criminal_record_check_result": object(USCriminalRecordCheckResult),
"vaccination_check_result": object(BasePackageResult),
"right_to_work_result": object(RightToWorkResult),
"certn_verification": object(BasePackageResult),
"report_result": string <Enum>,
"report_result_label": string <Enum>,
"dispute": boolean,
"report_status": string <Enum>,
"report_status_label": string <Enum>
},
"is_viewed": boolean,
"onboarding_link": URL,
"adjudication_status": string <Enum>,
"adjudication_status_label": string <Enum>,
"status": string <Enum>,
"has_active_automated_reminders": boolean,
"order_status": string <Enum>,
"check_executions": [
{
"id": string,
"check_name": string <Enum>,
"status": string <Enum>,
},
]
}
]
}{
"count": 1,
"next": null,
"previous": null,
"results": [
{
"request_identity_verification": false,
"request_equifax": false,
"request_base": true,
"request_instant_verify_employment": false,
"request_instant_verify_education": false,
"request_instant_verify_credential": false,
"request_international_criminal_record_check": false,
"request_enhanced_identity_verification": false,
"request_motor_vehicle_records": false,
"request_criminal_record_check": false,
"request_enhanced_criminal_record_check": false,
"request_vulnerable_sector_criminal_record_check": false,
"request_employer_references": false,
"request_address_references": false,
"request_employer_phone_references": false,
"request_address_phone_references": false,
"request_softcheck": true,
"request_social_media_check": false,
"request_soquij": false,
"request_us_criminal_record_check_tier_1": false,
"request_us_criminal_record_check_tier_2": false,
"request_us_criminal_record_check_tier_3": false,
"request_education_verification": false,
"request_credential_verification": false,
"request_employment_verification": false,
"request_vaccination_check": false,
"request_right_to_work": false,
"request_uk_basic_dbs_check": false,
"request_uk_basic_ds_check": false,
"request_uk_right_to_work_check": false,
"id": "aec12a3e-789b-0123-a2b3-bb567e2fe123",
"short_uid": "ABCDE1FG",
"last_updated": "2023-09-14T15:55:14.791018Z",
"report_status": "SENT",
"is_cosigner": false,
"information": {
"first_name": "Andrew",
"last_name": "McLeod"
},
"applicant_account": {
"id": "1eb234ab-a890-12c3-9876-4f9a73fe123d",
"email": "[email protected]",
"email_verified": false,
"phone_number": null
},
"application": {
"applicants": [
{
"id": "aec12a3e-789b-0123-a2b3-bb567e2fe123",
"first_name": "Andrew",
"last_name": "McLeod",
"email": "[email protected]",
"phone_number": null,
"share_of_rent": null,
"is_cosigner": false,
"application_url": "https://demo-app.certn.co/welcome/email?session=a98c8f8c-88ff-44b4-8ef8-04d4b4e4fb4c&token=b44b11e2-a001-444d-bafe-2c2d02d222f2&onboardingType=PM&inviteRoute=email&inviteCode=ee4e4",
"report_url": "https://demo-app.certn.co/pm/applications/aec12a3e-789b-0123-a2b3-bb567e2fe123/",
"status": "Pending"
}
],
"owner": {
"email": "[email protected]"
},
"is_active": true,
"team": {
"name": "PM Team Name"
},
"listing": null
},
"can_upgrade": false,
"is_equifax_eligible": false,
"can_resend_email": false,
"resend_email_time": "2023-09-15T15:55:14.750410Z",
"report_summary": {
"australian_criminal_intelligence_commission_check_result": null,
"equifax_result": null,
"information_result": {
"status": "PENDING",
"status_label": "Pending",
"dispute": false,
"result": "NONE",
"result_label": "None"
},
"instant_verify_result": null,
"international_criminal_record_check_result": null,
"motor_vehicle_record_result": null,
"social_media_check_result": null,
"risk_result": {
"status": "PENDING",
"status_label": "Pending",
"dispute": false,
"result": "NONE",
"result_label": "None"
},
"soquij_result": null,
"uk_basic_dbs_check_result": null,
"uk_basic_ds_check_result": null,
"uk_right_to_work_check_result": null,
"us_criminal_record_check_result": null,
"right_to_work_result": null,
"certn_verification": {
"status": "NONE",
"status_label": "None",
"dispute": false,
"employment_verification": "NONE",
"employment_verification_label": "None"
},
"report_result": "NONE",
"report_result_label": "None",
"dispute": false,
"report_status": "SENT",
"report_status_label": "Sent"
},
"is_viewed": false,
"onboarding_link": "https://demo-app.certn.co/welcome/email?session=a98c8f8c-88ff-44b4-8ef8-04d4b4e4fb4c&token=b44b11e2-a001-444d-bafe-2c2d02d222f2&onboardingType=PM&inviteRoute=email&inviteCode=ee4e4",
"adjudication_status": "NONE",
"adjudication_status_label": "None",
"status": "Pending",
"has_active_automated_reminders": true,
"order_status": "WAITING_ON_CANDIDATE",
"check_executions": [
{
"id": "check_exec_aABbC1cdefgDhijE2FGkHl",
"check_name": "base",
"status": "WAITING_ON_CANDIDATE"
},
{
"id": "check_exec_abABCDc0EdefFgGHhiIjJk",
"check_name": "softcheck",
"status": "WAITING_ON_CANDIDATE"
}
]
}
]
}{
"id": string <uuid>,
"created": string <date-time>,
"modified": string <date-time>,
"tag": string,
"(request_flags)": boolean
"last_updated": string <date-time>,
"submitted_time": string <date-time>,
"is_submitted": boolean,
"applicant_type": string <Enum>,
"report_status": string <Enum>,
"status": string <Enum>,
"status_label": string <Enum>,
"result": string <Enum>,
"result_label": string <Enum>,
"certn_score": number,
"certn_score_label": string <Enum>,
"applicant_account": {
"id": string,
"email": string
},
"application": {
object (Application)
},
"country": "CA",
"information": {
object (Information)
},
"employment_verification": string <VerificationEnum>,
"education_verification": string <VerificationEnum>,
"credential_verification": string <VerificationEnum>,
"reference_result": {
object (BasePackageResult)
},
"information_result": {
object (BasePackageResult)
},
"risk_result": {
object (RiskResult)
},
"equifax_result": {
object (EquifaxResult)
},
"identity_verified": boolean,
"employment_verified": boolean,
"identity_verification": {
object (Identity Verification)
},
"enhanced_identity_verification": {
object (EnhancedIdentityVerification)
},
"manual_id_verification": {
object (ManualIDVerification)
},
"rcmp_result": {
object (BasePackageResult)
},
"us_criminal_record_check_result": {
object (USCriminalRecordCheckResult)
},
"verification_result": {
object (VerificationResult)
},
"international_criminal_record_check_result": {
object (BasePackageResult)
},
"motor_vehicle_record_result": {
object (BasePackageResult)
},
"salary": number,
"sufficient_salary": boolean,
"high_risk_vulnerable_sector": boolean,
"job_safety_undue_risk": boolean,
"early_termination": number,
"early_termination_label": string <Enum>,
"reliability_risk": number,
"reliability_risk_label": string <Enum>,
"workplace_misconduct": number,
"workplace_misconduct_label": string <Enum>
}{
"id": "a123b4cd-1a23-1a23-12a3-a123456b7890",
"created": "2021-11-12T21:21:50Z",
"modified": "2021-11-12T21:21:50Z",
"tag": "Sub-Client 123",
"request_base": false,
"request_behavioural": false,
"request_softcheck": true,
"request_us_ssn_verification": false,
"request_equifax": true,
"request_identity_verification": false,
"request_enhanced_identity_verification": false,
"request_criminal_record_check": false,
"request_enhanced_criminal_record_check": false,
"request_us_criminal_record_check_tier_1": false,
"request_us_criminal_record_check_tier_2": false,
"request_us_criminal_record_check_tier_3": false,
"request_international_criminal_record_check": false,
"request_motor_vehicle_records": false,
"request_employment_verification": false,
"request_education_verification": false,
"request_credential_verification": false,
"request_employer_references": false,
"request_address_references": false,
"request_employer_phone_references": false,
"request_address_phone_references": false,
"request_instant_verify_employment": false,
"request_instant_verify_education": false,
"request_instant_verify_credential": false,
"last_updated": "2021-11-12T21:21:50Z",
"submitted_time": "2021-11-12T21:21:50Z",
"is_submitted": true,
"applicant_type": "STANDARD",
"report_status": "IN_PROGRESS",
"status": "Pending",
"status_label": "Pending",
"result": "REVIEW",
"result_label": "Review",
"certn_score": 85,
"certn_score_label": "PASS",
"applicant_account": {
"id": "string",
"email": "string"
},
"application": {
"id": "a123b4cd-1a23-1a23-12a3-a123456b7890",
"created": "2021-11-12T21:21:50Z",
"modified": "2021-11-12T21:21:50Z",
"email": "string"
},
"country": "CA",
"information": {
"id": "a123b4cd-1a23-1a23-12a3-a123456b7890",
"created": "2021-11-12T21:21:50Z",
"modified": "2021-11-12T21:21:50Z",
"first_name": "Sebastien",
"middle_name": "Jack Pierre",
"last_name": "Normandin",
"last_name_at_birth": "string",
"former_names": "string",
"alias": "string",
"date_of_birth": "2021-11-12",
"phone_number": "250-123-1234",
"sin_ssn": 123123123,
"gender": "M",
"birth_city": "string",
"birth_province_state": "string",
"birth_other_province_state": "string",
"birth_country": "string",
"license_number": "string",
"license_valid": true,
"license_prov_state": "string",
"license_other_country": true,
"license_type": "CA",
"cover_letter": "string",
"addresses": [
{
"address": "4412 King Alfred Court",
"unit": 100,
"city": "Victoria",
"province_state": "BC",
"country": "CA",
"postal_code": "V8A1B2",
"rent_or_own": "R",
"cost": 0,
"start_date": "2021-11-12",
"end_date": "2021-11-12",
"certn_verification": "VERIFIED",
"verification_notes": "string",
"address_reference": {
"email": {
"address": "[email protected]"
},
"phone_number": {
"phone_type": "NONE",
"number": "+1 250 555 1234",
"country": "string"
},
"name": {
"first_name": "string",
"middle_name": "string",
"last_name": "string"
},
"contact": {
"can_contact": true,
"can_contact_after_date": "2021-11-12"
}
}
}
],
"employers": [
{
"company_name": "string",
"position": "string",
"income": 8500,
"pay_period": "PER_HOUR",
"start_date": "2021-11-12",
"end_date": "2021-11-12",
"certn_verification": "VERIFIED",
"verification_notes": "string",
"employer_reference": {
"email": {
"address": "[email protected]"
},
"phone_number": {
"phone_type": "NONE",
"number": "+1 250 555 1234",
"country": "string"
},
"name": {
"first_name": "string",
"middle_name": "string",
"last_name": "string"
},
"contact": {
"can_contact": true,
"can_contact_after_date": "2021-11-12"
}
}
}
],
"educations": [
{
"institution": "string",
"degree": {
"degree": "2021-11-12",
"verified": true
},
"address": {
"address": "4412 King Alfred Court",
"unit": 100,
"city": "Victoria",
"province_state": "BC",
"country": "CA",
"postal_code": "V8A1B2"
},
"start_date": "2021-11-12",
"end_date": "2021-11-12",
"certn_verification": "VERIFIED",
"verification_notes": "string"
}
],
"convictions": [
{
"offense": 2002,
"date_of_sentence": "2000-01-01T00:00:00.000Z",
"court_location": "Toronto, ON, Canada",
"description": "Robbery; Theft over $200"
}
]
},
"employment_verification": "VERIFIED",
"education_verification": "VERIFIED",
"credential_verification": "VERIFIED",
"reference_result": {
"id": "a123b4cd-1a23-1a23-12a3-a123456b7890",
"status": "ANALYZING",
"status_label": "Analyzing",
"overall_score": "PASS",
"overall_score_label": "Pass",
"red_flags": [
"This may indicate the applicant is high risk."
],
"green_flags": [
"This may indicate the applicant is low risk."
],
"result": "REVIEW",
"result_label": "Review"
},
"information_result": {
"id": "a123b4cd-1a23-1a23-12a3-a123456b7890",
"status": "ANALYZING",
"status_label": "Analyzing",
"overall_score": "PASS",
"overall_score_label": "Pass",
"red_flags": [
"This may indicate the applicant is high risk."
],
"green_flags": [
"This may indicate the applicant is low risk."
],
"result": "REVIEW",
"result_label": "Review"
},
"behavioural_result": {
"id": "a123b4cd-1a23-1a23-12a3-a123456b7890",
"status": "ANALYZING",
"status_label": "Analyzing",
"overall_score": "PASS",
"overall_score_label": "Pass",
"red_flags": [
"This may indicate the applicant is high risk."
],
"green_flags": [
"This may indicate the applicant is low risk."
],
"result": "REVIEW",
"result_label": "Review"
},
"risk_result": {
"id": "a123b4cd-1a23-1a23-12a3-a123456b7890",
"status": "ANALYZING",
"status_label": "Analyzing",
"overall_score": "PASS",
"overall_score_label": "Pass",
"red_flags": [
"This may indicate the applicant is high risk."
],
"green_flags": [
"This may indicate the applicant is low risk."
],
"result": "REVIEW",
"result_label": "Review",
"risk_evaluations": [
{
"id": "a123b4cd-1a23-1a23-12a3-a123456b7890",
"overall_score": "PASS",
"risk_information_result": {},
"criminal_results": [
{
"confidence": 0,
"confidence_label": "Likely",
"overall_score": "PASS",
"criminal_identity": {
"criminal_cases": [
{
"case_type": "Criminal",
"number": "123asd",
"file_date": "2000-12-12",
"judgment_date": "2000-12-12",
"summary_description": "The case filings summary description",
"full_description": "string",
"notes": "No additional case notes available",
"court": {
"court": "Seattle Superior Court",
"court_type": "Criminal",
"docket_number": "545fjd",
"filed_date": "2000-12-12",
"served_date": "2000-12-12",
"trial_date": "2000-12-12",
"jurisdiction": "Seattle County"
},
"criminal_charges": [
{
"offense_description": "Breach of peace",
"offense_date": "2000-12-12",
"offense_type": "Felony",
"plea": "Not Guilty",
"hearing_date": "2000-12-12",
"hearing_type": "Open court hearing",
"probation": "No probation given",
"community_service": "No community service given",
"sentence_suspended": "None",
"fines": "No fines given",
"fines_paid_status": "Fines not paid",
"fines_paid_date": "2000-12-12",
"cost": "200",
"restitution": "None",
"transferred_jurisdiction": "Transferred from Seattle",
"transferred_case_number": "690330",
"active_warrant": "No active warrant",
"jail_time": "6 months jail time",
"prison_time": "6 months prison time",
"charge_in_progress": "no charge in progress",
"charge": "Vehicular manslaughter two counts",
"charge_level": "Felony",
"charge_class": "None",
"dispositions": [
{
"offense_description": "Speeding",
"offense_type": "Infraction",
"offense_date": "2000-12-12",
"description": "Description of the disposition offense",
"disposition_date": "2000-12-12",
"statue": "20-1212(B)",
"offense_class": "The offense class description",
"final_plea": "Not Guilty",
"disposition_description": "The description of the dispostion"
}
],
"arrests": [
{
"arrest_date": "2000-12-12",
"booking_number": "42069",
"citation_number": "247365",
"arresting_agency": "KERSHAW COUNTY DETENTION CENTER",
"offense_type": "Misdemeanor",
"offense_description": "A description of the arresting offense",
"counts": "Arrest has 6 counts"
}
],
"sentences": [
{
"sentence_type": "Community Service and Fines",
"duration": "6 months",
"amount": "100",
"amount_paid": "50",
"paid": "Half the fine has been paid",
"qualifier": "The sentence has no qualifier information",
"description": "The sentence description",
"effective_date": "2000-12-12",
"appearance_date": "2000-12-12",
"appearance_finding": "There are no appearance findings to detail about the sentence"
}
],
"additional_informations": [
{
"description": "More case information was found.",
"additional_description": "None",
"event_date": "2000-12-12"
}
]
}
]
}
],
"criminal_alerts": [
{
"parent_category": "FRAUD",
"category": "Burglary",
"stage": "Conviction",
"type": "Citation",
"description": "Convicted of burglary",
"date": "2000-12-12",
"parent_category_label": "Fraud"
}
],
"criminal_sources": [
{
"name": "World News",
"url": "worldnews.com",
"date": "2000-12-12",
"format": "Online Media",
"headline": "Burglary Conviction for Area Man",
"publication_source": "World News Conglomerate",
"publisher": "World News"
}
],
"criminal_addresses": [
{
"start_date": "2000-12-12",
"end_date": "2000-12-12",
"unit": "1a",
"address": "123 fort st.",
"city": "Victoria",
"province_state": "BC",
"country": "Canda",
"postal_code": "V8X2C3"
}
],
"criminal_additional_informations": [
{
"aliases": [
"willy will",
"billy bill"
],
"dates_of_birth": [
"2000-12-12"
],
"name": {
"first_name": "string",
"middle_name": "string",
"last_name": "string"
}
}
]
}
}
]
}
]
},
"equifax_result": {
"id": "a123b4cd-1a23-1a23-12a3-a123456b7890",
"status": "ANALYZING",
"status_label": "Analyzing",
"overall_score": "PASS",
"overall_score_label": "Pass",
"red_flags": [
"This may indicate the applicant is high risk."
],
"green_flags": [
"This may indicate the applicant is low risk."
],
"result": "REVIEW",
"result_label": "Review",
"description": "The financial score is based on self-provided information from the applicant and an analysis of the applicant's information available to Certn. This includes a credit check, Equifax record analysis, as well as other important informational data points",
"total_debt": 100,
"upgradable": false,
"trades": [
{
"credit_grantor": "RBC",
"payment_status": "Up to date",
"date_opened": "2000-12-12",
"account_rating": "High",
"date_reported": "2000-12-12",
"account_type": "Revolving",
"high_credit": 2000,
"balance_amount": 1000,
"last_activity_or_payment": "Paid as up to date",
"r_code": "R-1",
"percent_credit_used": 50,
"account_number": "112ksjd",
"past_due_amount": 0,
"payment_term_amount": 120,
"months_reviewed": 15,
"narratives": [
"Account has been paid in full."
]
}
],
"employers": [
{
"employment": "Subject's Current Employer",
"occupation": "Software",
"employer": "Certn",
"city": "Victoria",
"province": "BC",
"verification": true,
"salary": 1000000
}
],
"addresses": [
{
"address": "123 fort st.",
"civic_number": 123,
"street_name": "fort st.",
"city": "Victoria",
"province": "BC"
}
],
"collections": [
{
"date_of_last_payment": "2000-12-12",
"creditor": "Boys Club",
"amount_owed": 10000,
"amount_paid": 50,
"ledger_number": "123aslld",
"date_paid": "2000-12-12T00:00:00.000Z",
"date_reported": "2000-12-12T00:00:00.000Z",
"assigned_date": "2012-12-12T00:00:00.000Z",
"verification_date": "2000-12-12T00:00:00.000Z",
"account_designation": "Individual",
"first_deliquency": "2000-12-12T00:00:00.000Z",
"agency_entity": "GQC123",
"reason": "Credit not paid on in full",
"description": "Parking ticket"
}
],
"deposit_alerts": [
{
"customer_entity": "RBC",
"date_reported": "2000-12-12T00:00:00.000Z",
"account_type": "Business",
"date_opened": "2000-12-12T00:00:00.000Z",
"date_closed": "2000-12-12T00:00:00.000Z",
"date_written_off": "2000-12-12T00:00:00.000Z",
"amount_written_off": 2000,
"alert_status": "High",
"alert_status_date": "2000-12-12T00:00:00.000Z"
}
],
"bankruptcies": [
{
"account_type": "Individual",
"liability_amount": 2000,
"asset_amount": 20000,
"customer": "CRED COUNSELLING SOC",
"case_number_and_trustee": "12312 CE ASSOCIATES",
"filer": "Subject",
"legal_narrative": "No legal information available",
"date_filed": "2000-12-12T00:00:00.000Z",
"intent_or_disposition": "Discharged"
}
],
"judgments": [
{
"plaintiff": "Fred Rickleson",
"defendant": "Rick Frederickson",
"amount": 1000.21,
"date_filed": "2000-12-12T00:00:00.000Z",
"date_satisfied": "2000-12-12T00:00:00.000Z",
"verification_date": "2000-12-12T00:00:00.000Z",
"court_entity": "RBC",
"garnishee": "RBC",
"description": "Fred sued Rick"
}
],
"legal_items": [
{
"case_number": "1232djdsj",
"verification_date": "2000-12-12T00:00:00.000Z",
"update_source_code": "Tape rptd",
"date_filed": "2000-12-12T00:00:00.000Z",
"court_entity": "Toronto small claims",
"status_code": "Satisfied",
"date_satisfied": "2000-12-12T00:00:00.000Z",
"amount": 10000,
"defendant": "John Smithy",
"plaintiff": "Smith Johny",
"lawyer_name_address": "Johnson LLC 123 fort st Victoria",
"legal_item_description": "It was very bad deal"
}
],
"liens": [
{
"amount": 1000,
"date_filed": "1999-12-12T00:00:00.000Z",
"lien_class": "Class A",
"date_released": "1990-12-12T00:00:00.000Z",
"date_verified": "1990-12-12T00:00:00.000Z",
"court_entity": "Superior Court.",
"case_number": "123asda",
"lien_description": "Lien on house."
}
],
"secured_loans": [
{
"date_filed": "1990-12-12T00:00:00.000Z",
"court_entity": "Superior",
"creditor_name_address": "RBC 123 Main st.",
"creditor_industry_code": "620a",
"maturity_date": "1990-12-12T00:00:00.000Z"
}
],
"fraud_warnings": [
{
"product_description": "Fraud warnings are warnings of fraud.",
"message_priority": "Very high",
"message_code": "123a",
"message_description": "High fraud alert for bank fraud"
}
],
"non_sufficient_funds": [
{
"date_reported": "1990-12-12T00:00:00.000Z",
"creditor_entity": "RBC",
"nsfamount": 1000.2,
"details": "No sufficient funds in savings account.",
"verification_date": "1990-12-12T00:00:00.000Z"
}
],
"credit_file_metadatas": [
{
"hit_strength_indicator": "HIT",
"request_number": "123asd",
"address_discrepancy": "No discrepancy found in address",
"customer_number": "123asd",
"report_id": "123asd",
"file_since_date": "1990-12-12T00:00:00.000Z",
"date_of_last_activity": "1990-12-12T00:00:00.000Z",
"date_of_request": "1990-12-12T00:00:00.000Z",
"hit": "Big Hit",
"data_warning_messages": [
"No data warning messages"
],
"card_alert_warning_messages": [
"Credit card on high alert"
],
"alert_indicators": [
"No messages"
]
}
],
"other_incomes": [
{
"date_reported": "1990-12-12T00:00:00.000Z",
"income_source": "RBC",
"amount": 1000000,
"verification_date": "1990-12-12T00:00:00.000Z"
}
],
"consumer_statements": [
{
"date_reported": "1990-12-12T00:00:00.000Z",
"statement": "No consumer statement available."
}
],
"bank_accounts": [
{
"account": "Personal checking",
"date_reported": "1990-12-12T00:00:00.000Z",
"creditor_entity": "RBC",
"account_number": "123asd",
"figure_amount": 1000.12,
"date_opened": "1990-12-12T00:00:00.000Z",
"account_type": "Checking",
"status": "active",
"number_of_nsf": 0
}
],
"local_inquiries": [
{
"inquiry_date": "1990-12-12T00:00:00.000Z",
"customer_name": "Certn"
}
],
"foreign_inquiries": [
{
"inquiry_date": "1990-12-12T00:00:00.000Z",
"city_name_or_inquiry_number": "Seattle",
"inquiry_province": "WA"
}
]
},
"identity_verified": true,
"employment_verified": true,
"identity_verification": {
"id": "a123b4cd-1a23-1a23-12a3-a123456b7890",
"created": "2021-11-12T21:21:50Z",
"modified": "2021-11-12T21:21:50Z",
"status": "A",
"result": "VERIFIED"
},
"enhanced_identity_verification": {
"id": "a123b4cd-1a23-1a23-12a3-a123456b7890",
"created": "2021-11-12T21:21:50Z",
"modified": "2021-11-12T21:21:50Z",
"status": "A",
"result": "VERIFIED"
},
"manual_id_verification": {
"id": "a123b4cd-1a23-1a23-12a3-a123456b7890",
"created": "2021-11-12T21:21:50Z",
"modified": "2021-11-12T21:21:50Z",
"status": "A",
"result": "VERIFIED"
},
"rcmp_result": {
"id": "a123b4cd-1a23-1a23-12a3-a123456b7890",
"status": "ANALYZING",
"status_label": "Analyzing",
"overall_score": "PASS",
"overall_score_label": "Pass",
"red_flags": [
"This may indicate the applicant is high risk."
],
"green_flags": [
"This may indicate the applicant is low risk."
],
"result": "REVIEW",
"result_label": "Review"
},
"us_criminal_record_check_result": {
"id": "a123b4cd-1a23-1a23-12a3-a123456b7890",
"status": "ANALYZING",
"status_label": "Analyzing",
"overall_score": "PASS",
"overall_score_label": "Pass",
"red_flags": [
"This may indicate the applicant is high risk."
],
"green_flags": [
"This may indicate the applicant is low risk."
],
"result": "REVIEW",
"result_label": "Review",
"criminal_cases": [
{
"case_type": "Criminal",
"number": "123asd",
"file_date": "2000-12-12",
"judgment_date": "2000-12-12",
"summary_description": "The case filings summary description",
"full_description": "string",
"notes": "No additional case notes available",
"court": {
"court": "Seattle Superior Court",
"court_type": "Criminal",
"docket_number": "545fjd",
"filed_date": "2000-12-12",
"served_date": "2000-12-12",
"trial_date": "2000-12-12",
"jurisdiction": "Seattle County"
},
"criminal_charges": [
{
"offense_description": "Breach of peace",
"offense_date": "2000-12-12",
"offense_type": "Felony",
"plea": "Not Guilty",
"hearing_date": "2000-12-12",
"hearing_type": "Open court hearing",
"probation": "No probation given",
"community_service": "No community service given",
"sentence_suspended": "None",
"fines": "No fines given",
"fines_paid_status": "Fines not paid",
"fines_paid_date": "2000-12-12",
"cost": "200",
"restitution": "None",
"transferred_jurisdiction": "Transferred from Seattle",
"transferred_case_number": "690330",
"active_warrant": "No active warrant",
"jail_time": "6 months jail time",
"prison_time": "6 months prison time",
"charge_in_progress": "no charge in progress",
"charge": "Vehicular manslaughter two counts",
"charge_level": "Felony",
"charge_class": "None",
"dispositions": [
{
"offense_description": "Speeding",
"offense_type": "Infraction",
"offense_date": "2000-12-12",
"description": "Description of the disposition offense",
"disposition_date": "2000-12-12",
"statue": "20-1212(B)",
"offense_class": "The offense class description",
"final_plea": "Not Guilty",
"disposition_description": "The description of the dispostion"
}
],
"arrests": [
{
"arrest_date": "2000-12-12",
"booking_number": "42069",
"citation_number": "247365",
"arresting_agency": "KERSHAW COUNTY DETENTION CENTER",
"offense_type": "Misdemeanor",
"offense_description": "A description of the arresting offense",
"counts": "Arrest has 6 counts"
}
],
"sentences": [
{
"sentence_type": "Community Service and Fines",
"duration": "6 months",
"amount": "100",
"amount_paid": "50",
"paid": "Half the fine has been paid",
"qualifier": "The sentence has no qualifier information",
"description": "The sentence description",
"effective_date": "2000-12-12",
"appearance_date": "2000-12-12",
"appearance_finding": "There are no appearance findings to detail about the sentence"
}
],
"additional_informations": [
{
"description": "More case information was found.",
"additional_description": "None",
"event_date": "2000-12-12"
}
]
}
]
}
],
"ssn_id_document_reports": [
{
"ssn_result": "Discrepancy",
"ssn_status": "Complete",
"names": [
{
"first_name": "string",
"middle_name": "string",
"last_name": "string"
}
],
"addresses": [
{
"address": "4412 King Alfred Court",
"unit": 100,
"city": "Victoria",
"province_state": "BC",
"country": "CA",
"postal_code": "V8A1B2"
}
],
"id_documents": [
{
"type": "Passport",
"number": "123412kdsdsk",
"issuing_country": "US",
"issuing_province_state": "WA",
"issue_date": "2000-12-12",
"expiry_date": "2000-12-12"
}
],
"dates_of_birth": [
{
"date_of_birth": "2000-12-12"
}
]
}
],
"scan_status": {
"national_sex_offender_registry_scan": "Complete",
"security_watch_list_scan": "Complete",
"fraud_scan": "Complete",
"ofac_global_sanctions_scan": "Complete",
"ssn_verification_scan": "Complete",
"criminal_record_scan": "Complete",
"federal_record_scan": "Incomplete",
"single_state_county_record_scan": "Incomplete",
"all_state_county_record_scan": "Incomplete"
},
"record_check_requests": [
{
"status": "Complete",
"state": "OH",
"county": "Kershaw",
"district": "District 1",
"fips_code": 12312,
"search_type": "Criminal/Court Database Search"
}
]
},
"verification_result": {
"id": "a123b4cd-1a23-1a23-12a3-a123456b7890",
"status": "ANALYZING",
"status_label": "Analyzing",
"overall_score": "PASS",
"overall_score_label": "Pass",
"red_flags": [
"This may indicate the applicant is high risk."
],
"green_flags": [
"This may indicate the applicant is low risk."
],
"result": "REVIEW",
"result_label": "Review",
"employment_verification": "VERIFIED",
"education_verification": "VERIFIED",
"credential_verification": "VERIFIED",
"certn_verification": "VERIFIED",
"employer_verification_results": {
"id": "a123b4cd-1a23-1a23-12a3-a123456b7890",
"status": "ANALYZING",
"status_label": "Analyzing",
"overall_score": "PASS",
"overall_score_label": "Pass",
"red_flags": [
"This may indicate the applicant is high risk."
],
"green_flags": [
"This may indicate the applicant is low risk."
],
"result": "REVIEW",
"result_label": "Review",
"certn_verification": "VERIFIED",
"company_name_verified": false,
"position_name_verified": false,
"income_verified": false,
"employment_dates_verified": true,
"verification_notes": "Verification notes!",
"employer": {
"company_name": "string",
"position": "string",
"income": 8500,
"pay_period": "PER_HOUR",
"start_date": "2021-11-12",
"end_date": "2021-11-12",
"certn_verification": "VERIFIED",
"verification_notes": "string",
"employer_reference": {
"email": {
"address": "[email protected]"
},
"phone_number": {
"phone_type": "NONE",
"number": "+1 250 555 1234",
"country": "string"
},
"name": {
"first_name": "string",
"middle_name": "string",
"last_name": "string"
},
"contact": {
"can_contact": true,
"can_contact_after_date": "2021-11-12"
}
}
}
},
"education_verification_results": {
"id": "a123b4cd-1a23-1a23-12a3-a123456b7890",
"status": "ANALYZING",
"status_label": "Analyzing",
"overall_score": "PASS",
"overall_score_label": "Pass",
"red_flags": [
"This may indicate the applicant is high risk."
],
"green_flags": [
"This may indicate the applicant is low risk."
],
"result": "REVIEW",
"result_label": "Review",
"certn_verification": "VERIFIED",
"specializations_verified": false,
"degree_verified": false,
"institution_verified": false,
"enrolment_dates_verified": true,
"verification_notes": "Verification notes!",
"education": {
"institution": "string",
"degree": {
"degree": "2021-11-12",
"verified": true
},
"address": {
"address": "4412 King Alfred Court",
"unit": 100,
"city": "Victoria",
"province_state": "BC",
"country": "CA",
"postal_code": "V8A1B2"
},
"start_date": "2021-11-12",
"end_date": "2021-11-12",
"certn_verification": "VERIFIED",
"verification_notes": "string"
}
},
"credential_verification_results": {
"id": "a123b4cd-1a23-1a23-12a3-a123456b7890",
"status": "ANALYZING",
"status_label": "Analyzing",
"overall_score": "PASS",
"overall_score_label": "Pass",
"red_flags": [
"This may indicate the applicant is high risk."
],
"green_flags": [
"This may indicate the applicant is low risk."
],
"result": "REVIEW",
"result_label": "Review",
"certn_verification": "VERIFIED",
"certification_date_verified": false,
"certification_verified": false,
"institution_verified": true,
"verification_notes": "Verification notes!",
"credential": {
"description": "string",
"institution": "string",
"certification": "string",
"date_of_certification": "2021-11-12",
"current": true,
"certn_verification": "VERIFIED",
"verification_notes": "string"
}
}
},
"international_criminal_record_check_result": {
"id": "a123b4cd-1a23-1a23-12a3-a123456b7890",
"status": "ANALYZING",
"status_label": "Analyzing",
"overall_score": "PASS",
"overall_score_label": "Pass",
"red_flags": [
"This may indicate the applicant is high risk."
],
"green_flags": [
"This may indicate the applicant is low risk."
],
"result": "REVIEW",
"result_label": "Review"
},
"motor_vehicle_record_result": {
"id": "a123b4cd-1a23-1a23-12a3-a123456b7890",
"status": "ANALYZING",
"status_label": "Analyzing",
"overall_score": "PASS",
"overall_score_label": "Pass",
"red_flags": [
"This may indicate the applicant is high risk."
],
"green_flags": [
"This may indicate the applicant is low risk."
],
"result": "REVIEW",
"result_label": "Review"
},
"instant_verify_result": {
"instant_verify_employment": {
"id": "a123b4cd-1a23-1a23-12a3-a123456b7890",
"status": "ANALYZING",
"status_label": "Analyzing",
"overall_score": "PASS",
"overall_score_label": "Pass",
"red_flags": [
"This may indicate the applicant is high risk."
],
"green_flags": [
"This may indicate the applicant is low risk."
],
"result": "REVIEW",
"result_label": "Review",
"instant_verify_employment_result": [
{
"verification_status": "VERIFIED",
"verifications_scale": 0.8,
"label_source_data": "Tiger Keeping",
"label_verifier_data": "Keeping of Tigers",
"org_source_data": "The Greater Wynnewood Exotic Animal Park",
"org_verifier_data": "The Greater Wynnewood Exotic Animal Park",
"dates_source_data": "Feb - Sept 2020",
"dates_verifier_data": "Feb - Sept 2020"
}
]
},
"instant_verify_education": {
"id": "a123b4cd-1a23-1a23-12a3-a123456b7890",
"status": "ANALYZING",
"status_label": "Analyzing",
"overall_score": "PASS",
"overall_score_label": "Pass",
"red_flags": [
"This may indicate the applicant is high risk."
],
"green_flags": [
"This may indicate the applicant is low risk."
],
"result": "REVIEW",
"result_label": "Review",
"instant_verify_education_result": [
{
"verification_status": "VERIFIED",
"verifications_scale": 0.8,
"label_source_data": "Exploring Level 1",
"label_verifier_data": "Exploring 1",
"org_source_data": "DZ Center",
"org_verifier_data": "DZ Center",
"dates_source_data": "Feb - Sept 2020",
"dates_verifier_data": "Feb - Sept 2020"
}
]
},
"instant_verify_credential": {
"id": "a123b4cd-1a23-1a23-12a3-a123456b7890",
"status": "ANALYZING",
"status_label": "Analyzing",
"overall_score": "PASS",
"overall_score_label": "Pass",
"red_flags": [
"This may indicate the applicant is high risk."
],
"green_flags": [
"This may indicate the applicant is low risk."
],
"result": "REVIEW",
"result_label": "Review",
"instant_verification_credential_result": [
{
"verification_status": "VERIFIED",
"verifications_scale": 0.8,
"label_source_data": "CPR",
"label_verifier_data": "CPR Care Giver",
"org_source_data": "Red Cross",
"org_verifier_data": "Red Cross",
"dates_source_data": "Feb - Sept 2020",
"dates_verifier_data": "Feb - Sept 2020"
}
]
}
},
"damage_to_property": 0,
"damage_to_property_label": "High",
"eviction_potential": 0,
"eviction_potential_label": "High",
"late_rent_potential": 0,
"late_rent_potential_label": "High",
"tenancy_length": 0,
"tenancy_length_label": "High"
}string <binary>{
"report_url": string
}{
"report_url": "https://s3.ca-central-1.amazonaws.com/certn-reports/pm_806066d2-f9e7-4d54-844e-bcc225a8ef6d_1575603960.pdf?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAI322I2RK3VQJ4O3Q%2F20191206%2Fca-central-1%2Fs3%2Faws4_request&X-Amz-Date=20191206T034608Z&X-Amz-Expires=3600&X-Amz-SignedHeaders=host&X-Amz-Signature=0032b9ff42a2fe1135d28079f67b70338f5abc373b4b0a72707e3109eac8815d"
}{
// Response
}{
"html": string
}{
"html": "<!doctype html>\\n<html>\\n\\n<head><title>Certn Report</title></head><body>PM</body></html>"
}{
"count": int,
"next": URL,
"previous": URL,
"results": [
{
"id": string <uuid>,
"status": string <Enum>,
"get_status_display": string <Enum>,
"created": string <date-time>,
"modified": string <date-time>,
"last_updated": string <date-time>,
"building": string,
"building_code": string,
"address": string,
"city": string,
"province_state": string <ISO Code>,
"country": string <ISO Country Code>,
"postal_code": string,
"county": string,
"is_active": boolean,
"owner": {
"id": string <uuid>,
"email": string,
"team": object(Team)
},
"listing_count": int,
"full_address": string,
"url_code": string <uuid>
}
]
}{
"count": 1,
"next": null,
"previous": null,
"results": [
{
"id": "ec351b3c-0375-4e29-b050-2302f0475b65",
"status": "N",
"get_status_display": "No Vacancy",
"created": "2023-09-14T17:25:44.158367Z",
"modified": "2023-09-14T17:25:44.158400Z",
"last_updated": "2023-09-14T17:25:44.158451Z",
"building": "View Towers",
"building_code": "123ABC",
"address": "1017 Fort Street",
"city": "Victoria",
"province_state": "BC",
"country": "CA",
"postal_code": null,
"county": null,
"is_active": true,
"owner": {
"id": "cb14a9c1-2fb9-47f2-b508-9c397b49f1d1",
"email": "[email protected]",
"team": {
"id": "82b3f6d6-3a61-41f3-a5cc-da4335b9e4ff",
"name": "PM Team Name",
"country": "CA",
"industry": null,
"team_type": "PM",
"internal_name": "PM Team Name",
"app_url": "https://demo-app.certn.co/",
"compliance_region": {
"id": "fb123456-39e7-4738-b1aa-1234c204d888",
"name": "Initial",
"country": "CA",
"team_type": "PM",
"sub_region": "",
"default": true,
"score_value_field": "certn_score",
"score_label_field": "certn_score_label",
"show_legal_us": false,
"show_credit_report": true,
"show_fcra": false,
"require_address_history": true
},
"settings_config": {
"redirect_url": null,
"require_id_with_address": false,
"education_verification_level": "ALL",
"credential_verification_level": "ALL",
"volunteer_organization": "",
"request_motor_vehicle_records": false,
"resume_req": false,
"tenancy_years_amount_req": 2,
"request_criminal_record_check": false,
"employment_verification_min": 1,
"request_soquij": false,
"employment_verification_years": 3,
"get_org_name": "PM Team Name",
"org_name": null,
"tenancy_ref_phone_req": true,
"request_right_to_work": false,
"request_instant_verify_employment": false,
"request_enhanced_criminal_record_check": false,
"credential_verification_min": 1,
"request_employment_verification": false,
"request_identity_verification": false,
"hide_id_verification_photos": true,
"employer_references_max": 1,
"employer_ref_phone_req": true,
"visa_req": false,
"request_uk_basic_dbs_check": false,
"tenancy_ref_email_req": false,
"request_volunteer_acic_check": false,
"hide_detailed_financial": false,
"education_req": false,
"employer_years_amount_req": 0,
"hide_activity_log": true,
"employment_verification_max": 1,
"request_enhanced_identity_verification": false,
"reason_for_check": "",
"org_logo_link": "https://certn-api-s3-certn-images-ca-central-1-demo.s3.amazonaws.com/certn_logo_new.png",
"review_all_negative_mvr_results": false,
"enable_rcmp_reflow": false,
"emergency_contact_req": false,
"address_references_max": 1,
"education_verification_min": 1,
"credential_verification_max": 1,
"request_international_criminal_record_check": false,
"request_education_verification": false,
"org_primary_color": "#084146",
"document_required": false,
"request_vulnerable_sector_criminal_record_check": false,
"request_credential_verification": false,
"personal_ref_amount_req": 0,
"place_of_work": "",
"request_address_phone_references": false,
"request_softcheck": false,
"personal_ref_req": false,
"state_or_territory": "",
"whitelabel_emails": false,
"address_references_min": 1,
"request_base": false,
"employer_ref_email_req": false,
"compact_pdf_report": false,
"hide_date_of_birth": false,
"cover_letter_req": false,
"proof_of_income_req": false,
"us_criminal_record_check_years": 7,
"request_social_media_check": false,
"request_uk_right_to_work_check": false,
"request_australian_criminal_intelligence_commission_check": false,
"location_of_work": "",
"my_crc_region": null,
"request_address_references": false,
"employer_ref_req": false,
"issuing_authority": "",
"request_us_criminal_record_check_tier_2": false,
"volunteer_role": "",
"government_id_req": false,
"request_employer_phone_references": false,
"education_verification_max": 1,
"employer_references_min": 1,
"address_references_years": 3,
"position_title": "",
"request_employer_references": false,
"request_us_criminal_record_check_tier_1": false,
"whitelabel_report": false,
"employment_verification_years_or_individually": "INDIVIDUALLY",
"request_equifax": false,
"hide_sin_ssn": false,
"workable_fast_complete": false,
"request_uk_basic_ds_check": false,
"tenancy_ref_amount_req": 1,
"custom_tracks": [],
"hide_ssn_trace": true,
"applicant_login": false,
"purpose_of_check": null,
"limit_education_verifications": false,
"employer_references_years": 3,
"request_vaccination_check": false,
"license_type": "",
"exclude_softcheck_possible_matches": false,
"passport_req": false,
"employer_references_years_or_individually": "INDIVIDUALLY",
"hide_current_address": true,
"request_instant_verify_credential": false,
"request_us_criminal_record_check_tier_3": false,
"role_or_position_title": "",
"request_instant_verify_education": false,
"employment_sector": "",
"address_references_years_or_individually": "INDIVIDUALLY"
},
"billing_plan": {
"pm_request_softcheck_price": "0.00",
"hr_request_softcheck_price": "0.00",
"pm_request_equifax_price": "0.00",
"hr_request_equifax_price": "0.00",
"pm_request_identity_verification_price": "0.00",
"hr_request_identity_verification_price": "0.00",
"pm_request_enhanced_identity_verification_price": "0.00",
"hr_request_enhanced_identity_verification_price": "0.00",
"pm_request_criminal_record_check_price": "0.00",
"hr_request_criminal_record_check_price": "0.00",
"pm_request_vulnerable_sector_criminal_record_check_price": "0.00",
"hr_request_vulnerable_sector_criminal_record_check_price": "0.00",
"pm_request_motor_vehicle_records_price": "0.00",
"hr_request_motor_vehicle_records_price": "0.00",
"pm_request_education_verification_price": "0.00",
"hr_request_education_verification_price": "0.00",
"pm_request_credential_verification_price": "0.00",
"hr_request_credential_verification_price": "0.00",
"pm_request_employment_verification_price": "0.00",
"hr_request_employment_verification_price": "0.00",
"pm_request_us_criminal_record_check_tier_1_price": "0.00",
"hr_request_us_criminal_record_check_tier_1_price": "0.00",
"pm_request_us_criminal_record_check_tier_2_price": "0.00",
"hr_request_us_criminal_record_check_tier_2_price": "0.00",
"pm_request_us_criminal_record_check_tier_3_seven_year_price": "0.00",
"hr_request_us_criminal_record_check_tier_3_seven_year_price": "0.00",
"pm_request_us_criminal_record_check_tier_3_ten_year_price": "0.00",
"hr_request_us_criminal_record_check_tier_3_ten_year_price": "0.00",
"pm_request_employer_references_price": "0.00",
"hr_request_employer_references_price": "0.00",
"pm_request_address_references_price": "0.00",
"hr_request_address_references_price": "0.00",
"pm_request_employer_phone_references_price": "0.00",
"hr_request_employer_phone_references_price": "0.00",
"pm_request_address_phone_references_price": "0.00",
"hr_request_address_phone_references_price": "0.00",
"pm_request_enhanced_criminal_record_check_price": "0.00",
"hr_request_enhanced_criminal_record_check_price": "0.00",
"pm_request_instant_verify_employment_price": "0.00",
"pm_request_instant_verify_education_price": "0.00",
"pm_request_instant_verify_credential_price": "0.00",
"hr_request_instant_verify_employment_price": "0.00",
"hr_request_instant_verify_education_price": "0.00",
"hr_request_instant_verify_credential_price": "0.00",
"pm_request_soquij_price": "0.00",
"hr_request_soquij_price": "0.00",
"stripe_public_api_key": ""
},
"google_analytics_key": "",
"adwords_key": "",
"adwords_conversion_key": "",
"bing_key": "",
"external_domain": "",
"countries_excluded_from_international_check": []
}
},
"listing_count": 0,
"full_address": "1017 Fort Street Victoria BC CA ",
"url_code": "ec351b3c-0375-4e29-b050-2302f0475b65"
}
]
}{
"id": string <uuid>,
"status": string,
"get_status_display": string,
"created": string <date-time>,
"modified": string <date-time>,
"last_updated": string <date-time>,
"building": string,
"building_code": string,
"address": string,
"city": string,
"county": string,
"province_state": string <ISO Code>,
"country": string <ISO Country Code>,
"postal_code": string,
"is_active": boolean,
"owner": {
"id": string <uuid>,
"email": string,
"team": {
"id": string <uuid>,
"name": string,
"country": string <ISO Country Code>,
"industry": string,
"team_type": string,
"internal_name": string,
"app_url": string,
"compliance_region": {
"id": string <uuid>,
"name": string,
"country": string <ISO Country Code>,
"team_type": string,
"sub_region": string,
"default": boolean,
"score_value_field": string,
"score_label_field": string,
"show_legal_us": boolean,
"show_credit_report": boolean,
"show_fcra": boolean,
"require_address_history": boolean
},
"settings_config": {
"get_org_name": string,
"org_name": string,
"org_logo_link": string,
"org_primary_color": string,
"whitelabel_report": boolean,
"whitelabel_emails": boolean,
"compact_pdf_report": boolean,
"behavioural_test_req": boolean,
"emergency_contact_req": boolean,
"personal_ref_req": boolean,
"education_req": boolean,
"tenancy_years_amount_req": int,
"tenancy_ref_amount_req": int,
"tenancy_ref_email_req": boolean,
"tenancy_ref_phone_req": boolean,
"employer_years_amount_req": int,
"employer_ref_req": boolean,
"employer_ref_email_req": boolean,
"employer_ref_phone_req": boolean,
"document_required": boolean,
"cover_letter_req": boolean,
"government_id_req": boolean,
"proof_of_income_req": boolean,
"resume_req": boolean,
"visa_req": boolean,
"personal_ref_amount_req": int,
"passport_req": boolean,
"hide_detailed_financial": boolean,
"hide_sin_ssn": boolean,
"hide_date_of_birth": boolean,
"enable_rcmp_reflow": boolean,
"hide_id_verification_photos": boolean,
"hide_current_address": boolean,
"require_id_with_address": boolean,
"hide_activity_log": boolean,
"redirect_url": string,
"custom_tracks": [],
"my_crc_region": string,
"hide_ssn_trace": boolean,
"request_base": boolean,
"request_behavioural": boolean,
"request_softcheck": boolean,
"request_equifax": boolean,
"request_identity_verification": boolean,
"request_enhanced_identity_verification": boolean,
"request_criminal_record_check": boolean,
"request_enhanced_criminal_record_check": boolean,
"request_vulnerable_sector_criminal_record_check": boolean,
"request_motor_vehicle_records": boolean,
"request_education_verification": boolean,
"request_employment_verification": boolean,
"request_us_criminal_softcheck": boolean,
"request_us_ssn_verification": boolean,
"request_employer_references": boolean,
"request_address_references": boolean,
"request_employer_phone_references": boolean,
"request_address_phone_references": boolean,
"request_international_criminal_record_check": boolean,
"request_soquij": boolean,
"request_instant_verify_employment": boolean,
"request_instant_verify_education": boolean,
"request_instant_verify_credential": boolean,
"employer_references_min": int,
"employer_references_max": int,
"address_references_min": int,
"address_references_max": int,
"employment_verification_min": int,
"employment_verification_max": int,
"education_verification_min": int,
"education_verification_max": int,
"credential_verification_min": int,
"credential_verification_max": int,
"credential_verification_level": string,
"education_verification_level": string,
"employer_references_years": int,
"address_references_years": int,
"employment_verification_years": int,
"employment_verification_years_or_individually": string,
"address_references_years_or_individually": string,
"employer_references_years_or_individually": string,
"us_criminal_record_check_years": int,
"applicant_login": boolean,
"exclude_softcheck_possible_matches": boolean,
"workable_fast_complete": boolean,
"review_all_negative_mvr_results": boolean,
"limit_education_verifications": boolean
},
"billing_plan": {
},
"google_analytics_key": string,
"adwords_key": string,
"adwords_conversion_key": string,
"external_domain": string
}
},
"listing_count": int,
"full_address": string,
"url_code": string
}{
"id": "a123b4cd-1a23-1a23-12a3-a123456b7890",
"status": "N",
"get_status_display": "No Vacancy",
"created": "2022-01-20T23:14:13.817172Z",
"modified": "2022-01-20T23:14:13.817198Z",
"last_updated": "2022-01-20T23:14:13.817227Z",
"building": "View Towers",
"building_code": "123ABC",
"address": "1017 Fort Street",
"city": "Victoria",
"county": null,
"province_state": "BC",
"country": "CA",
"postal_code": null,
"is_active": true,
"owner": {
"id": "d4129823-0ccd-4fa3-99b2-c30baaa01c89",
"email": "[email protected]",
"team": {
"id": "9f887774-d577-4d2f-b109-82951065993b",
"name": "Team",
"country": "CA",
"industry": "",
"team_type": "PM",
"internal_name": "Team",
"app_url": "https://api.certn.co/",
"compliance_region": {
"id": "eac92691-2ba5-46c6-8e76-1ca85db2a142",
"name": "Initial",
"country": "CA",
"team_type": "PM",
"sub_region": "",
"default": true,
"score_value_field": "certn_score",
"score_label_field": "report_summary.report_result_label",
"show_legal_us": false,
"show_credit_report": true,
"show_fcra": false,
"require_address_history": true
},
"settings_config": {
"get_org_name": "Team",
"org_name": "Team",
"org_logo_link": "https://certn-images.s3.amazonaws.com/yourlogo_here_copy.png",
"org_primary_color": "#35c9b3",
"whitelabel_report": false,
"whitelabel_emails": false,
"compact_pdf_report": false,
"behavioural_test_req": false,
"emergency_contact_req": false,
"personal_ref_req": false,
"education_req": false,
"tenancy_years_amount_req": 4,
"tenancy_ref_amount_req": 1,
"tenancy_ref_email_req": false,
"tenancy_ref_phone_req": false,
"employer_years_amount_req": 0,
"employer_ref_req": false,
"employer_ref_email_req": false,
"employer_ref_phone_req": false,
"document_required": false,
"cover_letter_req": false,
"government_id_req": false,
"proof_of_income_req": false,
"resume_req": false,
"visa_req": false,
"personal_ref_amount_req": 0,
"passport_req": false,
"hide_detailed_financial": false,
"hide_sin_ssn": true,
"hide_date_of_birth": false,
"enable_rcmp_reflow": false,
"hide_id_verification_photos": false,
"hide_current_address": true,
"require_id_with_address": false,
"hide_activity_log": true,
"redirect_url": null,
"custom_tracks": [],
"my_crc_region": null,
"hide_ssn_trace": true,
"request_base": true,
"request_behavioural": true,
"request_softcheck": true,
"request_equifax": false,
"request_identity_verification": false,
"request_enhanced_identity_verification": false,
"request_criminal_record_check": false,
"request_enhanced_criminal_record_check": false,
"request_vulnerable_sector_criminal_record_check": false,
"request_motor_vehicle_records": false,
"request_education_verification": false,
"request_employment_verification": false,
"request_us_criminal_softcheck": false,
"request_us_ssn_verification": false,
"request_employer_references": false,
"request_address_references": true,
"request_employer_phone_references": false,
"request_address_phone_references": false,
"request_international_criminal_record_check": false,
"request_soquij": false,
"request_instant_verify_employment": false,
"request_instant_verify_education": false,
"request_instant_verify_credential": false,
"employer_references_min": 3,
"employer_references_max": 3,
"address_references_min": 2,
"address_references_max": 2,
"employment_verification_min": 3,
"employment_verification_max": 3,
"education_verification_min": 1,
"education_verification_max": 1,
"credential_verification_min": 1,
"credential_verification_max": 1,
"credential_verification_level": "ALL",
"education_verification_level": "ALL",
"employer_references_years": 5,
"address_references_years": 3,
"employment_verification_years": 5,
"employment_verification_years_or_individually": "INDIVIDUALLY",
"address_references_years_or_individually": "INDIVIDUALLY",
"employer_references_years_or_individually": "INDIVIDUALLY",
"us_criminal_record_check_years": 7,
"applicant_login": false,
"exclude_softcheck_possible_matches": false,
"workable_fast_complete": false,
"review_all_negative_mvr_results": false,
"limit_education_verifications": false
},
"billing_plan": {
},
"google_analytics_key": "",
"adwords_key": "",
"adwords_conversion_key": "",
"external_domain": ""
}
},
"listing_count": 0,
"full_address": "1017 Fort Street Victoria BC CA",
"url_code": ""
}[
{
"name": string,
"unit": string,
"move_in_date": string <dateTime>,
"move_in_immediately": boolean,
"rent": number,
"security_deposit_amount": number,
"pet_deposit": boolean,
"pet_deposit_amount": number,
"storage_locker": boolean,
"property_manager_terms": string,
"is_active": boolean,
"is_public": boolean,
"url-code": string,
"property_id": string <uuid>,
"owner_id": string <uuid>,
"notification_list_ids": [
string <uuid>
]
}
]{
"count": 1,
"next": null,
"previous": null,
"results": [
{
"id": "8655ce78-f904-42d0-b195-8b2ec024b118",
"created": "2023-09-15T18:54:43.617524Z",
"modified": "2023-09-15T18:54:43.617543Z",
"last_updated": "2023-09-15T18:54:43.617565Z",
"name": null,
"unit": null,
"move_in_date": null,
"move_in_immediately": false,
"rent": "1000.00",
"rent_range": null,
"security_deposit_amount": null,
"pet_deposit": false,
"pet_deposit_amount": null,
"storage_locker": false,
"property_manager_terms": null,
"is_active": true,
"is_public": false,
"url_code": "8655ce78-f904-42d0-b195-8b2ec024b118",
"is_placeholder": false,
"owner": {
"id": "cb14a9c1-2fb9-47f2-b508-9c397b49f1d1",
"email": "[email protected]",
"team": {
"id": "82b3f6d6-3a61-41f3-a5cc-da4335b9e4ff",
"name": "PM Team Name",
"country": "CA",
"industry": null,
"team_type": "PM",
"internal_name": "PM Team Name",
"app_url": "https://develop-app.certn.co/",
"compliance_region": {
"id": "fb961650-39e7-4738-b1cc-3923f204c885",
"name": "Initial",
"country": "CA",
"team_type": "PM",
"sub_region": "",
"default": true,
"score_value_field": "certn_score",
"score_label_field": "certn_score_label",
"show_legal_us": false,
"show_credit_report": true,
"show_fcra": false,
"require_address_history": true
},
"settings_config": {
"my_crc_region": null,
"hide_date_of_birth": false,
"document_required": false,
"request_criminal_record_check": false,
"employer_references_max": 1,
"request_employer_references": false,
"volunteer_organization": "",
"employer_references_min": 1,
"request_uk_basic_ds_check": false,
"us_criminal_record_check_years": 7,
"education_req": false,
"employer_references_years": 3,
"resume_req": false,
"personal_ref_req": false,
"address_references_min": 1,
"exclude_softcheck_possible_matches": false,
"employer_references_years_or_individually": "INDIVIDUALLY",
"request_vaccination_check": false,
"employment_verification_years": 3,
"tenancy_years_amount_req": 2,
"proof_of_income_req": false,
"hide_current_address": true,
"address_references_years": 3,
"education_verification_level": "ALL",
"license_type": "",
"org_logo_link": "https://certn-api-s3-certn-images-ca-central-1-develop.s3.amazonaws.com/certn_logo_new.png",
"emergency_contact_req": false,
"government_id_req": false,
"employment_verification_years_or_individually": "INDIVIDUALLY",
"credential_verification_max": 1,
"position_title": "",
"address_references_years_or_individually": "INDIVIDUALLY",
"request_soquij": false,
"tenancy_ref_phone_req": true,
"personal_ref_amount_req": 0,
"credential_verification_level": "ALL",
"whitelabel_emails": false,
"place_of_work": "",
"issuing_authority": "",
"request_us_criminal_record_check_tier_2": false,
"request_base": false,
"request_instant_verify_employment": false,
"purpose_of_check": null,
"request_education_verification": false,
"request_australian_criminal_intelligence_commission_check": false,
"hide_detailed_financial": false,
"request_instant_verify_education": false,
"volunteer_role": "",
"hide_sin_ssn": false,
"employer_years_amount_req": 0,
"request_enhanced_identity_verification": false,
"request_address_references": false,
"reason_for_check": "",
"request_enhanced_criminal_record_check": false,
"applicant_login": false,
"redirect_url": null,
"request_employer_phone_references": false,
"request_us_criminal_record_check_tier_1": false,
"request_employment_verification": false,
"request_motor_vehicle_records": false,
"credential_verification_min": 1,
"request_social_media_check": false,
"workable_fast_complete": false,
"address_references_max": 1,
"get_org_name": "PM Team Name",
"cover_letter_req": false,
"state_or_territory": "",
"passport_req": false,
"employer_ref_email_req": false,
"employment_verification_min": 1,
"employer_ref_phone_req": true,
"custom_tracks": [],
"request_equifax": false,
"request_instant_verify_credential": false,
"request_international_criminal_record_check": false,
"whitelabel_report": false,
"org_primary_color": "#084146",
"employment_sector": "",
"request_volunteer_acic_check": false,
"visa_req": false,
"limit_education_verifications": false,
"request_softcheck": false,
"request_credential_verification": false,
"require_id_with_address": false,
"hide_activity_log": true,
"tenancy_ref_amount_req": 1,
"hide_id_verification_photos": true,
"request_identity_verification": false,
"location_of_work": "",
"education_verification_min": 1,
"employer_ref_req": false,
"request_uk_basic_dbs_check": false,
"employment_verification_max": 1,
"request_address_phone_references": false,
"request_uk_right_to_work_check": false,
"tenancy_ref_email_req": false,
"request_vulnerable_sector_criminal_record_check": false,
"request_right_to_work": false,
"education_verification_max": 1,
"enable_rcmp_reflow": false,
"role_or_position_title": "",
"compact_pdf_report": false,
"review_all_negative_mvr_results": false,
"request_us_criminal_record_check_tier_3": false,
"hide_ssn_trace": true,
"org_name": null
},
"billing_plan": {
"pm_request_softcheck_price": "10",
"hr_request_softcheck_price": "10",
"pm_request_equifax_price": "5.480000000000000426325641456060111522674560546875",
"hr_request_equifax_price": "5.480000000000000426325641456060111522674560546875",
"pm_request_identity_verification_price": "0",
"hr_request_identity_verification_price": "0",
"pm_request_enhanced_identity_verification_price": "0",
"hr_request_enhanced_identity_verification_price": "0",
"pm_request_criminal_record_check_price": "15",
"hr_request_criminal_record_check_price": "15",
"pm_request_vulnerable_sector_criminal_record_check_price": "49.99000000000000198951966012828052043914794921875",
"hr_request_vulnerable_sector_criminal_record_check_price": "49.99000000000000198951966012828052043914794921875",
"pm_request_motor_vehicle_records_price": "25",
"hr_request_motor_vehicle_records_price": "25",
"pm_request_education_verification_price": "10",
"hr_request_education_verification_price": "10",
"pm_request_credential_verification_price": "10",
"hr_request_credential_verification_price": "10",
"pm_request_employment_verification_price": "8.949999999999999289457264239899814128875732421875",
"hr_request_employment_verification_price": "8.949999999999999289457264239899814128875732421875",
"pm_request_us_criminal_record_check_tier_1_price": "15",
"hr_request_us_criminal_record_check_tier_1_price": "15",
"pm_request_us_criminal_record_check_tier_2_price": "15",
"hr_request_us_criminal_record_check_tier_2_price": "15",
"pm_request_us_criminal_record_check_tier_3_seven_year_price": "10",
"hr_request_us_criminal_record_check_tier_3_seven_year_price": "10",
"pm_request_us_criminal_record_check_tier_3_ten_year_price": "15",
"hr_request_us_criminal_record_check_tier_3_ten_year_price": "15",
"pm_request_employer_references_price": "5",
"hr_request_employer_references_price": "5",
"pm_request_address_references_price": "5",
"hr_request_address_references_price": "5",
"pm_request_employer_phone_references_price": "24.989999999999998436805981327779591083526611328125",
"hr_request_employer_phone_references_price": "24.989999999999998436805981327779591083526611328125",
"pm_request_address_phone_references_price": "24.989999999999998436805981327779591083526611328125",
"hr_request_address_phone_references_price": "24.989999999999998436805981327779591083526611328125",
"pm_request_enhanced_criminal_record_check_price": "20",
"hr_request_enhanced_criminal_record_check_price": "20",
"pm_request_instant_verify_employment_price": "3",
"pm_request_instant_verify_education_price": "3",
"pm_request_instant_verify_credential_price": "3",
"hr_request_instant_verify_employment_price": "3",
"hr_request_instant_verify_education_price": "3",
"hr_request_instant_verify_credential_price": "3",
"pm_request_soquij_price": "6.29999999999999982236431605997495353221893310546875",
"hr_request_soquij_price": "6.29999999999999982236431605997495353221893310546875",
"stripe_public_api_key": "pk_test_AQHqQZLpYbufin2RJW8MHf2A"
},
"google_analytics_key": "",
"adwords_key": "",
"adwords_conversion_key": "",
"bing_key": "",
"external_domain": "",
"countries_excluded_from_international_check": []
}
},
"property": {
"id": "1b9d992b-b1bd-46d3-94d4-d1fb9f19b3b6",
"status": "N",
"get_status_display": "No Vacancy",
"created": "2023-09-15T17:20:52.645763Z",
"modified": "2023-09-15T17:20:52.645785Z",
"last_updated": "2023-09-15T17:20:52.645815Z",
"building": "View Towers",
"building_code": "123ABC",
"address": "1017 Fort Street",
"city": "Victoria",
"province_state": "BC",
"country": "CA",
"postal_code": null,
"county": null,
"is_active": true,
"owner": {
"id": "cb14a9c1-2fb9-47f2-b508-9c397b49f1d1",
"email": "[email protected]",
"team": {
"id": "82b3f6d6-3a61-41f3-a5cc-da4335b9e4ff",
"name": "PM Team Name",
"country": "CA",
"industry": null,
"team_type": "PM",
"internal_name": "PM Team Name",
"app_url": "https://develop-app.certn.co/",
"compliance_region": {
"id": "fb961650-39e7-4738-b1cc-3923f204c885",
"name": "Initial",
"country": "CA",
"team_type": "PM",
"sub_region": "",
"default": true,
"score_value_field": "certn_score",
"score_label_field": "certn_score_label",
"show_legal_us": false,
"show_credit_report": true,
"show_fcra": false,
"require_address_history": true
},
"settings_config": {
"my_crc_region": null,
"hide_date_of_birth": false,
"document_required": false,
"request_criminal_record_check": false,
"employer_references_max": 1,
"request_employer_references": false,
"volunteer_organization": "",
"employer_references_min": 1,
"request_uk_basic_ds_check": false,
"us_criminal_record_check_years": 7,
"education_req": false,
"employer_references_years": 3,
"resume_req": false,
"personal_ref_req": false,
"address_references_min": 1,
"exclude_softcheck_possible_matches": false,
"employer_references_years_or_individually": "INDIVIDUALLY",
"request_vaccination_check": false,
"employment_verification_years": 3,
"tenancy_years_amount_req": 2,
"proof_of_income_req": false,
"hide_current_address": true,
"address_references_years": 3,
"education_verification_level": "ALL",
"license_type": "",
"org_logo_link": "https://certn-api-s3-certn-images-ca-central-1-develop.s3.amazonaws.com/certn_logo_new.png",
"emergency_contact_req": false,
"government_id_req": false,
"employment_verification_years_or_individually": "INDIVIDUALLY",
"credential_verification_max": 1,
"position_title": "",
"address_references_years_or_individually": "INDIVIDUALLY",
"request_soquij": false,
"tenancy_ref_phone_req": true,
"personal_ref_amount_req": 0,
"credential_verification_level": "ALL",
"whitelabel_emails": false,
"place_of_work": "",
"issuing_authority": "",
"request_us_criminal_record_check_tier_2": false,
"request_base": false,
"request_instant_verify_employment": false,
"purpose_of_check": null,
"request_education_verification": false,
"request_australian_criminal_intelligence_commission_check": false,
"hide_detailed_financial": false,
"request_instant_verify_education": false,
"volunteer_role": "",
"hide_sin_ssn": false,
"employer_years_amount_req": 0,
"request_enhanced_identity_verification": false,
"request_address_references": false,
"reason_for_check": "",
"request_enhanced_criminal_record_check": false,
"applicant_login": false,
"redirect_url": null,
"request_employer_phone_references": false,
"request_us_criminal_record_check_tier_1": false,
"request_employment_verification": false,
"request_motor_vehicle_records": false,
"credential_verification_min": 1,
"request_social_media_check": false,
"workable_fast_complete": false,
"address_references_max": 1,
"get_org_name": "PM Team Name",
"cover_letter_req": false,
"state_or_territory": "",
"passport_req": false,
"employer_ref_email_req": false,
"employment_verification_min": 1,
"employer_ref_phone_req": true,
"custom_tracks": [],
"request_equifax": false,
"request_instant_verify_credential": false,
"request_international_criminal_record_check": false,
"whitelabel_report": false,
"org_primary_color": "#084146",
"employment_sector": "",
"request_volunteer_acic_check": false,
"visa_req": false,
"limit_education_verifications": false,
"request_softcheck": false,
"request_credential_verification": false,
"require_id_with_address": false,
"hide_activity_log": true,
"tenancy_ref_amount_req": 1,
"hide_id_verification_photos": true,
"request_identity_verification": false,
"location_of_work": "",
"education_verification_min": 1,
"employer_ref_req": false,
"request_uk_basic_dbs_check": false,
"employment_verification_max": 1,
"request_address_phone_references": false,
"request_uk_right_to_work_check": false,
"tenancy_ref_email_req": false,
"request_vulnerable_sector_criminal_record_check": false,
"request_right_to_work": false,
"education_verification_max": 1,
"enable_rcmp_reflow": false,
"role_or_position_title": "",
"compact_pdf_report": false,
"review_all_negative_mvr_results": false,
"request_us_criminal_record_check_tier_3": false,
"hide_ssn_trace": true,
"org_name": null
},
"billing_plan": {
"pm_request_softcheck_price": "10",
"hr_request_softcheck_price": "10",
"pm_request_equifax_price": "5.480000000000000426325641456060111522674560546875",
"hr_request_equifax_price": "5.480000000000000426325641456060111522674560546875",
"pm_request_identity_verification_price": "0",
"hr_request_identity_verification_price": "0",
"pm_request_enhanced_identity_verification_price": "0",
"hr_request_enhanced_identity_verification_price": "0",
"pm_request_criminal_record_check_price": "15",
"hr_request_criminal_record_check_price": "15",
"pm_request_vulnerable_sector_criminal_record_check_price": "49.99000000000000198951966012828052043914794921875",
"hr_request_vulnerable_sector_criminal_record_check_price": "49.99000000000000198951966012828052043914794921875",
"pm_request_motor_vehicle_records_price": "25",
"hr_request_motor_vehicle_records_price": "25",
"pm_request_education_verification_price": "10",
"hr_request_education_verification_price": "10",
"pm_request_credential_verification_price": "10",
"hr_request_credential_verification_price": "10",
"pm_request_employment_verification_price": "8.949999999999999289457264239899814128875732421875",
"hr_request_employment_verification_price": "8.949999999999999289457264239899814128875732421875",
"pm_request_us_criminal_record_check_tier_1_price": "15",
"hr_request_us_criminal_record_check_tier_1_price": "15",
"pm_request_us_criminal_record_check_tier_2_price": "15",
"hr_request_us_criminal_record_check_tier_2_price": "15",
"pm_request_us_criminal_record_check_tier_3_seven_year_price": "10",
"hr_request_us_criminal_record_check_tier_3_seven_year_price": "10",
"pm_request_us_criminal_record_check_tier_3_ten_year_price": "15",
"hr_request_us_criminal_record_check_tier_3_ten_year_price": "15",
"pm_request_employer_references_price": "5",
"hr_request_employer_references_price": "5",
"pm_request_address_references_price": "5",
"hr_request_address_references_price": "5",
"pm_request_employer_phone_references_price": "24.989999999999998436805981327779591083526611328125",
"hr_request_employer_phone_references_price": "24.989999999999998436805981327779591083526611328125",
"pm_request_address_phone_references_price": "24.989999999999998436805981327779591083526611328125",
"hr_request_address_phone_references_price": "24.989999999999998436805981327779591083526611328125",
"pm_request_enhanced_criminal_record_check_price": "20",
"hr_request_enhanced_criminal_record_check_price": "20",
"pm_request_instant_verify_employment_price": "3",
"pm_request_instant_verify_education_price": "3",
"pm_request_instant_verify_credential_price": "3",
"hr_request_instant_verify_employment_price": "3",
"hr_request_instant_verify_education_price": "3",
"hr_request_instant_verify_credential_price": "3",
"pm_request_soquij_price": "6.29999999999999982236431605997495353221893310546875",
"hr_request_soquij_price": "6.29999999999999982236431605997495353221893310546875",
"stripe_public_api_key": "pk_test_AQHqQZLpYbufin2RJW8MHf2A"
},
"google_analytics_key": "",
"adwords_key": "",
"adwords_conversion_key": "",
"bing_key": "",
"external_domain": "",
"countries_excluded_from_international_check": []
}
},
"listing_count": 1,
"full_address": "1017 Fort Street Victoria BC CA ",
"url_code": "1b9d992b-b1bd-46d3-94d4-d1fb9f19b3b6"
},
"applicant_count": 0,
"new_applicant_count": 0,
"notification_list": [
{
"id": "cb14a9c1-2fb9-47f2-b508-9c397b49f1d1",
"email": "[email protected]",
"team": {
"id": "82b3f6d6-3a61-41f3-a5cc-da4335b9e4ff",
"name": "PM Team Name",
"country": "CA",
"industry": null,
"team_type": "PM",
"internal_name": "PM Team Name",
"app_url": "https://develop-app.certn.co/",
"compliance_region": {
"id": "fb961650-39e7-4738-b1cc-3923f204c885",
"name": "Initial",
"country": "CA",
"team_type": "PM",
"sub_region": "",
"default": true,
"score_value_field": "certn_score",
"score_label_field": "certn_score_label",
"show_legal_us": false,
"show_credit_report": true,
"show_fcra": false,
"require_address_history": true
},
"settings_config": {
"my_crc_region": null,
"hide_date_of_birth": false,
"document_required": false,
"request_criminal_record_check": false,
"employer_references_max": 1,
"request_employer_references": false,
"volunteer_organization": "",
"employer_references_min": 1,
"request_uk_basic_ds_check": false,
"us_criminal_record_check_years": 7,
"education_req": false,
"employer_references_years": 3,
"resume_req": false,
"personal_ref_req": false,
"address_references_min": 1,
"exclude_softcheck_possible_matches": false,
"employer_references_years_or_individually": "INDIVIDUALLY",
"request_vaccination_check": false,
"employment_verification_years": 3,
"tenancy_years_amount_req": 2,
"proof_of_income_req": false,
"hide_current_address": true,
"address_references_years": 3,
"education_verification_level": "ALL",
"license_type": "",
"org_logo_link": "https://certn-api-s3-certn-images-ca-central-1-develop.s3.amazonaws.com/certn_logo_new.png",
"emergency_contact_req": false,
"government_id_req": false,
"employment_verification_years_or_individually": "INDIVIDUALLY",
"credential_verification_max": 1,
"position_title": "",
"address_references_years_or_individually": "INDIVIDUALLY",
"request_soquij": false,
"tenancy_ref_phone_req": true,
"personal_ref_amount_req": 0,
"credential_verification_level": "ALL",
"whitelabel_emails": false,
"place_of_work": "",
"issuing_authority": "",
"request_us_criminal_record_check_tier_2": false,
"request_base": false,
"request_instant_verify_employment": false,
"purpose_of_check": null,
"request_education_verification": false,
"request_australian_criminal_intelligence_commission_check": false,
"hide_detailed_financial": false,
"request_instant_verify_education": false,
"volunteer_role": "",
"hide_sin_ssn": false,
"employer_years_amount_req": 0,
"request_enhanced_identity_verification": false,
"request_address_references": false,
"reason_for_check": "",
"request_enhanced_criminal_record_check": false,
"applicant_login": false,
"redirect_url": null,
"request_employer_phone_references": false,
"request_us_criminal_record_check_tier_1": false,
"request_employment_verification": false,
"request_motor_vehicle_records": false,
"credential_verification_min": 1,
"request_social_media_check": false,
"workable_fast_complete": false,
"address_references_max": 1,
"get_org_name": "PM Team Name",
"cover_letter_req": false,
"state_or_territory": "",
"passport_req": false,
"employer_ref_email_req": false,
"employment_verification_min": 1,
"employer_ref_phone_req": true,
"custom_tracks": [],
"request_equifax": false,
"request_instant_verify_credential": false,
"request_international_criminal_record_check": false,
"whitelabel_report": false,
"org_primary_color": "#084146",
"employment_sector": "",
"request_volunteer_acic_check": false,
"visa_req": false,
"limit_education_verifications": false,
"request_softcheck": false,
"request_credential_verification": false,
"require_id_with_address": false,
"hide_activity_log": true,
"tenancy_ref_amount_req": 1,
"hide_id_verification_photos": true,
"request_identity_verification": false,
"location_of_work": "",
"education_verification_min": 1,
"employer_ref_req": false,
"request_uk_basic_dbs_check": false,
"employment_verification_max": 1,
"request_address_phone_references": false,
"request_uk_right_to_work_check": false,
"tenancy_ref_email_req": false,
"request_vulnerable_sector_criminal_record_check": false,
"request_right_to_work": false,
"education_verification_max": 1,
"enable_rcmp_reflow": false,
"role_or_position_title": "",
"compact_pdf_report": false,
"review_all_negative_mvr_results": false,
"request_us_criminal_record_check_tier_3": false,
"hide_ssn_trace": true,
"org_name": null
},
"billing_plan": {
"pm_request_softcheck_price": "10",
"hr_request_softcheck_price": "10",
"pm_request_equifax_price": "5.480000000000000426325641456060111522674560546875",
"hr_request_equifax_price": "5.480000000000000426325641456060111522674560546875",
"pm_request_identity_verification_price": "0",
"hr_request_identity_verification_price": "0",
"pm_request_enhanced_identity_verification_price": "0",
"hr_request_enhanced_identity_verification_price": "0",
"pm_request_criminal_record_check_price": "15",
"hr_request_criminal_record_check_price": "15",
"pm_request_vulnerable_sector_criminal_record_check_price": "49.99000000000000198951966012828052043914794921875",
"hr_request_vulnerable_sector_criminal_record_check_price": "49.99000000000000198951966012828052043914794921875",
"pm_request_motor_vehicle_records_price": "25",
"hr_request_motor_vehicle_records_price": "25",
"pm_request_education_verification_price": "10",
"hr_request_education_verification_price": "10",
"pm_request_credential_verification_price": "10",
"hr_request_credential_verification_price": "10",
"pm_request_employment_verification_price": "8.949999999999999289457264239899814128875732421875",
"hr_request_employment_verification_price": "8.949999999999999289457264239899814128875732421875",
"pm_request_us_criminal_record_check_tier_1_price": "15",
"hr_request_us_criminal_record_check_tier_1_price": "15",
"pm_request_us_criminal_record_check_tier_2_price": "15",
"hr_request_us_criminal_record_check_tier_2_price": "15",
"pm_request_us_criminal_record_check_tier_3_seven_year_price": "10",
"hr_request_us_criminal_record_check_tier_3_seven_year_price": "10",
"pm_request_us_criminal_record_check_tier_3_ten_year_price": "15",
"hr_request_us_criminal_record_check_tier_3_ten_year_price": "15",
"pm_request_employer_references_price": "5",
"hr_request_employer_references_price": "5",
"pm_request_address_references_price": "5",
"hr_request_address_references_price": "5",
"pm_request_employer_phone_references_price": "24.989999999999998436805981327779591083526611328125",
"hr_request_employer_phone_references_price": "24.989999999999998436805981327779591083526611328125",
"pm_request_address_phone_references_price": "24.989999999999998436805981327779591083526611328125",
"hr_request_address_phone_references_price": "24.989999999999998436805981327779591083526611328125",
"pm_request_enhanced_criminal_record_check_price": "20",
"hr_request_enhanced_criminal_record_check_price": "20",
"pm_request_instant_verify_employment_price": "3",
"pm_request_instant_verify_education_price": "3",
"pm_request_instant_verify_credential_price": "3",
"hr_request_instant_verify_employment_price": "3",
"hr_request_instant_verify_education_price": "3",
"hr_request_instant_verify_credential_price": "3",
"pm_request_soquij_price": "6.29999999999999982236431605997495353221893310546875",
"hr_request_soquij_price": "6.29999999999999982236431605997495353221893310546875",
"stripe_public_api_key": "pk_test_AQHqQZLpYbufin2RJW8MHf2A"
},
"google_analytics_key": "",
"adwords_key": "",
"adwords_conversion_key": "",
"bing_key": "",
"external_domain": "",
"countries_excluded_from_international_check": []
}
}
],
"selected_application": {
"is_selected": false,
"applicants": []
},
"use_team_link": false,
"length_of_lease": null
}
]
}
```{
"id": string <uuid>,
"created": string <date-time>,
"modified": string <date-time>,
"last_updated": string <date-time>,
"name": string,
"unit": string,
"move_in_date": string <date-time>,
"move_in_immediately": boolean,
"rent": string,
"rent_range": string,
"security_deposit_amount": string,
"pet_deposit": boolean,
"pet_deposit_amount": string,
"storage_locker": boolean,
"property_manager_terms": string,
"is_active": boolean,
"is_public": boolean,
"url_code": string,
"is_placeholder": boolean,
"owner": {
"id": string <uuid>,
"email": string,
"team": {
"id": string <uuid>,
"name": string,
"country": string,
"industry": string,
"team_type": string,
"internal_name": string,
"app_url": string,
"compliance_region": {
"id": string <uuid>,
"name": string,
"country": string <ISO Country Code>,
"team_type": string,
"sub_region": string,
"default": boolean,
"score_value_field": string,
"score_label_field": string,
"show_legal_us": boolean,
"show_credit_report": boolean,
"show_fcra": boolean,
"require_address_history": boolean
},
"settings_config": {
"get_org_name": string,
"org_name": string,
"org_logo_link": string,
"org_primary_color": string,
"whitelabel_report": boolean,
"whitelabel_emails": boolean,
"compact_pdf_report": boolean,
"behavioural_test_req": boolean,
"emergency_contact_req": boolean,
"personal_ref_req": boolean,
"education_req": boolean,
"tenancy_years_amount_req": int,
"tenancy_ref_amount_req": int,
"tenancy_ref_email_req": boolean,
"tenancy_ref_phone_req": boolean,
"employer_years_amount_req": int,
"employer_ref_req": boolean,
"employer_ref_email_req": boolean,
"employer_ref_phone_req": boolean,
"document_required": boolean,
"cover_letter_req": boolean,
"government_id_req": boolean,
"proof_of_income_req": boolean,
"resume_req": boolean,
"visa_req": boolean,
"personal_ref_amount_req": int,
"passport_req": boolean,
"hide_detailed_financial": boolean,
"hide_sin_ssn": boolean,
"hide_date_of_birth": boolean,
"enable_rcmp_reflow": boolean,
"hide_id_verification_photos": boolean,
"hide_current_address": boolean,
"require_id_with_address": boolean,
"hide_activity_log": boolean,
"redirect_url": string,
"custom_tracks": [],
"my_crc_region": string,
"hide_ssn_trace": boolean,
"request_base": boolean,
"request_behavioural": boolean,
"request_softcheck": boolean,
"request_equifax": boolean,
"request_identity_verification": boolean,
"request_enhanced_identity_verification": boolean,
"request_criminal_record_check": boolean,
"request_enhanced_criminal_record_check": boolean,
"request_vulnerable_sector_criminal_record_check": boolean,
"request_motor_vehicle_records": boolean,
"request_education_verification": boolean,
"request_employment_verification": boolean,
"request_us_criminal_softcheck": boolean,
"request_us_ssn_verification": boolean,
"request_employer_references": boolean,
"request_address_references": boolean,
"request_employer_phone_references": boolean,
"request_address_phone_references": boolean,
"request_international_criminal_record_check": boolean,
"request_soquij": boolean,
"request_instant_verify_employment": boolean,
"request_instant_verify_education": boolean,
"request_instant_verify_credential": boolean,
"employer_references_min": int,
"employer_references_max": int,
"address_references_min": int,
"address_references_max": int,
"employment_verification_min": int,
"employment_verification_max": int,
"education_verification_min": int,
"education_verification_max": int,
"credential_verification_min": int,
"credential_verification_max": int,
"credential_verification_level": string,
"education_verification_level": string,
"employer_references_years": int,
"address_references_years": int,
"employment_verification_years": int,
"employment_verification_years_or_individually": string,
"address_references_years_or_individually": string,
"employer_references_years_or_individually": string,
"us_criminal_record_check_years": int,
"applicant_login": boolean,
"exclude_softcheck_possible_matches": boolean,
"workable_fast_complete": boolean,
"review_all_negative_mvr_results": boolean,
"limit_education_verifications": boolean
},
"billing_plan": {},
"google_analytics_key": string,
"adwords_key": string,
"adwords_conversion_key": string,
"external_domain": string,
}
},
"property": {
"id": string <uuid>,
"status": string,
"get_status_display": string,
"created": string <date-time>,
"modified": string <date-time>,
"last_updated": string <date-time>,
"building": string,
"building_code": string,
"address": string,
"city": string,
"province_state": string <ISO Code>,
"country": string <ISO Country Code>,
"postal_code": string,
"is_active": boolean,
"owner": {
"id": string <uuid>,
"email": string,
"team": {
"id": string <uuid>,
"name": string,
"country": string <ISO Country Code>,
"industry": string,
"team_type": string,
"internal_name": string,
"app_url": string,
"compliance_region": {
"id": string <uuid>,
"name": string,
"country": string <ISO Country Code>,
"team_type": string,
"sub_region": string,
"default": boolean,
"score_value_field": string,
"score_label_field": string,
"show_legal_us": boolean,
"show_credit_report": boolean,
"show_fcra": boolean,
"require_address_history": boolean
},
"settings_config": {
"get_org_name": string,
"org_name": string,
"org_logo_link": string,
"org_primary_color": string,
"whitelabel_report": boolean,
"whitelabel_emails": boolean,
"compact_pdf_report": boolean,
"behavioural_test_req": boolean,
"emergency_contact_req": boolean,
"personal_ref_req": boolean,
"education_req": boolean,
"tenancy_years_amount_req": int,
"tenancy_ref_amount_req": int,
"tenancy_ref_email_req": boolean,
"tenancy_ref_phone_req": boolean,
"employer_years_amount_req": int,
"employer_ref_req": boolean,
"employer_ref_email_req": boolean,
"employer_ref_phone_req": boolean,
"document_required": boolean,
"cover_letter_req": boolean,
"government_id_req": boolean,
"proof_of_income_req": boolean,
"resume_req": boolean,
"visa_req": boolean,
"personal_ref_amount_req": int,
"passport_req": boolean,
"hide_detailed_financial": boolean,
"hide_sin_ssn": boolean,
"hide_date_of_birth": boolean,
"enable_rcmp_reflow": boolean,
"hide_id_verification_photos": boolean,
"hide_current_address": boolean,
"require_id_with_address": boolean,
"hide_activity_log": boolean,
"redirect_url": string,
"custom_tracks": [],
"my_crc_region": string,
"hide_ssn_trace": boolean,
"request_base": boolean,
"request_behavioural": boolean,
"request_softcheck": boolean,
"request_equifax": boolean,
"request_identity_verification": boolean,
"request_enhanced_identity_verification": boolean,
"request_criminal_record_check": boolean,
"request_enhanced_criminal_record_check": boolean,
"request_vulnerable_sector_criminal_record_check": boolean,
"request_motor_vehicle_records": boolean,
"request_education_verification": boolean,
"request_employment_verification": boolean,
"request_us_criminal_softcheck": boolean,
"request_us_ssn_verification": boolean,
"request_employer_references": boolean,
"request_address_references": boolean,
"request_employer_phone_references": boolean,
"request_address_phone_references": boolean,
"request_international_criminal_record_check": boolean,
"request_soquij": boolean,
"request_instant_verify_employment": boolean,
"request_instant_verify_education": boolean,
"request_instant_verify_credential": boolean,
"employer_references_min": int,
"employer_references_max": int,
"address_references_min": int,
"address_references_max": int,
"employment_verification_min": int,
"employment_verification_max": int,
"education_verification_min": int,
"education_verification_max": int,
"credential_verification_min": int,
"credential_verification_max": int,
"credential_verification_level": string,
"education_verification_level": string,
"employer_references_years": int,
"address_references_years": int,
"employment_verification_years": int,
"employment_verification_years_or_individually": string,
"address_references_years_or_individually": string,
"employer_references_years_or_individually": string,
"us_criminal_record_check_years": int,
"applicant_login": boolean,
"exclude_softcheck_possible_matches": boolean,
"workable_fast_complete": boolean,
"review_all_negative_mvr_results": boolean,
"limit_education_verifications": boolean
},
"billing_plan": {
},
"google_analytics_key": string,
"adwords_key": string,
"adwords_conversion_key": string,
"external_domain": string
}
},
"listing_count": int,
"full_address": string,
"url_code": string
},
"applicant_count": int,
"new_applicant_count": int,
"is_psychometric_required": boolean,
"notification_list": [
{
"id": string <uuid>,
"email": string,
"team": {
"id": string <uuid>,
"name": string,
"country": string <ISO Country Code>,
"industry": string,
"team_type": string,
"internal_name": string,
"app_url": string,
"compliance_region": {
"id": string <uuid>,
"name": string,
"country": string <ISO Country Code>,
"team_type": string,
"sub_region": string,
"default": boolean,
"score_value_field": string,
"score_label_field": string,
"show_legal_us": boolean,
"show_credit_report": boolean,
"show_fcra": boolean,
"require_address_history": boolean
},
"settings_config": {
"get_org_name": string,
"org_name": string,
"org_logo_link": string,
"org_primary_color": string,
"whitelabel_report": boolean,
"whitelabel_emails": boolean,
"compact_pdf_report": boolean,
"behavioural_test_req": boolean,
"emergency_contact_req": boolean,
"personal_ref_req": boolean,
"education_req": boolean,
"tenancy_years_amount_req": int,
"tenancy_ref_amount_req": int,
"tenancy_ref_email_req": boolean,
"tenancy_ref_phone_req": boolean,
"employer_years_amount_req": int,
"employer_ref_req": boolean,
"employer_ref_email_req": boolean,
"employer_ref_phone_req": boolean,
"document_required": boolean,
"cover_letter_req": boolean,
"government_id_req": boolean,
"proof_of_income_req": boolean,
"resume_req": boolean,
"visa_req": boolean,
"personal_ref_amount_req": int,
"passport_req": boolean,
"hide_detailed_financial": boolean,
"hide_sin_ssn": boolean,
"hide_date_of_birth": boolean,
"enable_rcmp_reflow": boolean,
"hide_id_verification_photos": boolean,
"hide_current_address": boolean,
"require_id_with_address": boolean,
"hide_activity_log": boolean,
"redirect_url": string,
"custom_tracks": [],
"my_crc_region": string,
"hide_ssn_trace": boolean,
"request_base": boolean,
"request_behavioural": boolean,
"request_softcheck": boolean,
"request_equifax": boolean,
"request_identity_verification": boolean,
"request_enhanced_identity_verification": boolean,
"request_criminal_record_check": boolean,
"request_enhanced_criminal_record_check": boolean,
"request_vulnerable_sector_criminal_record_check": boolean,
"request_motor_vehicle_records": boolean,
"request_education_verification": boolean,
"request_employment_verification": boolean,
"request_us_criminal_softcheck": boolean,
"request_us_ssn_verification": boolean,
"request_employer_references": boolean,
"request_address_references": boolean,
"request_employer_phone_references": boolean,
"request_address_phone_references": boolean,
"request_international_criminal_record_check": boolean,
"request_soquij": boolean,
"request_instant_verify_employment": boolean,
"request_instant_verify_education": boolean,
"request_instant_verify_credential": boolean,
"employer_references_min": int,
"employer_references_max": int,
"address_references_min": int,
"address_references_max": int,
"employment_verification_min": int,
"employment_verification_max": int,
"education_verification_min": int,
"education_verification_max": int,
"credential_verification_min": int,
"credential_verification_max": int,
"credential_verification_level": string,
"education_verification_level": string,
"employer_references_years": int,
"address_references_years": int,
"employment_verification_years": int,
"employment_verification_years_or_individually": string,
"address_references_years_or_individually": string,
"employer_references_years_or_individually": string,
"us_criminal_record_check_years": int,
"applicant_login": boolean,
"exclude_softcheck_possible_matches": boolean,
"workable_fast_complete": boolean,
"review_all_negative_mvr_results": boolean,
"limit_education_verifications": boolean
},
"billing_plan": {
},
"google_analytics_key": string,
"adwords_key": string,
"adwords_conversion_key": string,
"external_domain": string
}
}
}
],
"selected_application": {
"is_selected": boolean,
"applicants": []
},
"use_team_link": boolean,
"length_of_lease": string
}{
"id": "d7fac660-ba71-450e-a254-cc69ba6bfe5d",
"created": "2022-01-21T00:42:26.040770Z",
"modified": "2022-01-21T00:42:26.040814Z",
"last_updated": "2022-01-21T00:42:26.040837Z",
"name": "Andrew",
"unit": null,
"move_in_date": null,
"move_in_immediately": false,
"rent": "1000.00",
"rent_range": null,
"security_deposit_amount": null,
"pet_deposit": false,
"pet_deposit_amount": null,
"storage_locker": false,
"property_manager_terms": null,
"is_active": true,
"is_public": false,
"url_code": "",
"is_placeholder": false,
"owner": {
"id": "d4129823-0ccd-4fa3-99b2-c30baaa01c89",
"email": "[email protected]",
"team": {
"id": "9f887774-d577-4d2f-b109-82951065993b",
"name": "Team",
"country": "CA",
"industry": "",
"team_type": "PM",
"internal_name": "Team",
"app_url": "https://api.certn.co/",
"compliance_region": {
"id": "eac92691-2ba5-46c6-8e76-1ca85db2a142",
"name": "Initial",
"country": "CA",
"team_type": "PM",
"sub_region": "",
"default": true,
"score_value_field": "certn_score",
"score_label_field": "report_summary.report_result_label",
"show_legal_us": false,
"show_credit_report": true,
"show_fcra": false,
"require_address_history": true
},
"settings_config": {
"get_org_name": "Team",
"org_name": "Team",
"org_logo_link": "https://certn-images.s3.amazonaws.com/yourlogo_here_copy.png",
"org_primary_color": "#35c9b3",
"whitelabel_report": false,
"whitelabel_emails": false,
"compact_pdf_report": false,
"behavioural_test_req": false,
"emergency_contact_req": false,
"personal_ref_req": false,
"education_req": false,
"tenancy_years_amount_req": 4,
"tenancy_ref_amount_req": 1,
"tenancy_ref_email_req": false,
"tenancy_ref_phone_req": false,
"employer_years_amount_req": 0,
"employer_ref_req": false,
"employer_ref_email_req": false,
"employer_ref_phone_req": false,
"document_required": false,
"cover_letter_req": false,
"government_id_req": false,
"proof_of_income_req": false,
"resume_req": false,
"visa_req": false,
"personal_ref_amount_req": 0,
"passport_req": false,
"hide_detailed_financial": false,
"hide_sin_ssn": true,
"hide_date_of_birth": false,
"enable_rcmp_reflow": false,
"hide_id_verification_photos": false,
"hide_current_address": true,
"require_id_with_address": false,
"hide_activity_log": true,
"redirect_url": null,
"custom_tracks": [],
"my_crc_region": null,
"hide_ssn_trace": true,
"request_base": true,
"request_behavioural": true,
"request_softcheck": true,
"request_equifax": false,
"request_identity_verification": false,
"request_enhanced_identity_verification": false,
"request_criminal_record_check": false,
"request_enhanced_criminal_record_check": false,
"request_vulnerable_sector_criminal_record_check": false,
"request_motor_vehicle_records": false,
"request_education_verification": false,
"request_employment_verification": false,
"request_us_criminal_softcheck": false,
"request_us_ssn_verification": false,
"request_employer_references": false,
"request_address_references": true,
"request_employer_phone_references": false,
"request_address_phone_references": false,
"request_international_criminal_record_check": false,
"request_soquij": false,
"request_instant_verify_employment": false,
"request_instant_verify_education": false,
"request_instant_verify_credential": false,
"employer_references_min": 3,
"employer_references_max": 3,
"address_references_min": 2,
"address_references_max": 2,
"employment_verification_min": 3,
"employment_verification_max": 3,
"education_verification_min": 1,
"education_verification_max": 1,
"credential_verification_min": 1,
"credential_verification_max": 1,
"credential_verification_level": "ALL",
"education_verification_level": "ALL",
"employer_references_years": 5,
"address_references_years": 3,
"employment_verification_years": 5,
"employment_verification_years_or_individually": "INDIVIDUALLY",
"address_references_years_or_individually": "INDIVIDUALLY",
"employer_references_years_or_individually": "INDIVIDUALLY",
"us_criminal_record_check_years": 7,
"applicant_login": false,
"exclude_softcheck_possible_matches": false,
"workable_fast_complete": false,
"review_all_negative_mvr_results": false,
"limit_education_verifications": false
},
"billing_plan": {},
"google_analytics_key": "",
"adwords_key": "",
"adwords_conversion_key": "",
"external_domain": ""
}
},
"property": {
"id": "bc3e83ef-0656-42d0-820b-1e2fac8d40ba",
"status": "N",
"get_status_display": "No Vacancy",
"created": "2022-01-20T23:14:13.817172Z",
"modified": "2022-01-20T23:14:13.817198Z",
"last_updated": "2022-01-20T23:14:13.817227Z",
"building": null,
"building_code": null,
"address": "1017 Fort Street",
"city": "Victoria",
"province_state": "BC",
"country": "CA",
"postal_code": null,
"is_active": true,
"owner": {
"id": "d4129823-0ccd-4fa3-99b2-c30baaa01c89",
"email": "[email protected]",
"team": {
"id": "9f887774-d577-4d2f-b109-82951065993b",
"name": "Team",
"country": "CA",
"industry": "",
"team_type": "PM",
"internal_name": "Team",
"app_url": "https://api.certn.co/",
"compliance_region": {
"id": "eac92691-2ba5-46c6-8e76-1ca85db2a142",
"name": "Initial",
"country": "CA",
"team_type": "PM",
"sub_region": "",
"default": true,
"score_value_field": "certn_score",
"score_label_field": "report_summary.report_result_label",
"show_legal_us": false,
"show_credit_report": true,
"show_fcra": false,
"require_address_history": true
},
"settings_config": {
"get_org_name": "Team",
"org_name": "Team",
"org_logo_link": "https://certn-images.s3.amazonaws.com/yourlogo_here_copy.png",
"org_primary_color": "#35c9b3",
"whitelabel_report": false,
"whitelabel_emails": false,
"compact_pdf_report": false,
"behavioural_test_req": false,
"emergency_contact_req": false,
"personal_ref_req": false,
"education_req": false,
"tenancy_years_amount_req": 4,
"tenancy_ref_amount_req": 1,
"tenancy_ref_email_req": false,
"tenancy_ref_phone_req": false,
"employer_years_amount_req": 0,
"employer_ref_req": false,
"employer_ref_email_req": false,
"employer_ref_phone_req": false,
"document_required": false,
"cover_letter_req": false,
"government_id_req": false,
"proof_of_income_req": false,
"resume_req": false,
"visa_req": false,
"personal_ref_amount_req": 0,
"passport_req": false,
"hide_detailed_financial": false,
"hide_sin_ssn": true,
"hide_date_of_birth": false,
"enable_rcmp_reflow": false,
"hide_id_verification_photos": false,
"hide_current_address": true,
"require_id_with_address": false,
"hide_activity_log": true,
"redirect_url": null,
"custom_tracks": [],
"my_crc_region": null,
"hide_ssn_trace": true,
"request_base": true,
"request_behavioural": true,
"request_softcheck": true,
"request_equifax": false,
"request_identity_verification": false,
"request_enhanced_identity_verification": false,
"request_criminal_record_check": false,
"request_enhanced_criminal_record_check": false,
"request_vulnerable_sector_criminal_record_check": false,
"request_motor_vehicle_records": false,
"request_education_verification": false,
"request_employment_verification": false,
"request_us_criminal_softcheck": false,
"request_us_ssn_verification": false,
"request_employer_references": false,
"request_address_references": true,
"request_employer_phone_references": false,
"request_address_phone_references": false,
"request_international_criminal_record_check": false,
"request_soquij": false,
"request_instant_verify_employment": false,
"request_instant_verify_education": false,
"request_instant_verify_credential": false,
"employer_references_min": 3,
"employer_references_max": 3,
"address_references_min": 2,
"address_references_max": 2,
"employment_verification_min": 3,
"employment_verification_max": 3,
"education_verification_min": 1,
"education_verification_max": 1,
"credential_verification_min": 1,
"credential_verification_max": 1,
"credential_verification_level": "ALL",
"education_verification_level": "ALL",
"employer_references_years": 5,
"address_references_years": 3,
"employment_verification_years": 5,
"employment_verification_years_or_individually": "INDIVIDUALLY",
"address_references_years_or_individually": "INDIVIDUALLY",
"employer_references_years_or_individually": "INDIVIDUALLY",
"us_criminal_record_check_years": 7,
"applicant_login": false,
"exclude_softcheck_possible_matches": false,
"workable_fast_complete": false,
"review_all_negative_mvr_results": false,
"limit_education_verifications": false
},
"billing_plan": {
},
"google_analytics_key": "",
"adwords_key": "",
"adwords_conversion_key": "",
"external_domain": ""
}
},
"listing_count": 1,
"full_address": "1017 Fort Street Victoria QC CA ",
"url_code": "bc3e83ef-0656-42d0-820b-1e2fac8d40ba"
},
"applicant_count": 0,
"new_applicant_count": 0,
"is_psychometric_required": true,
"notification_list": [
{
"id": "5946ace5-e817-4b73-9657-e631aea21f38",
"email": "[email protected]",
"team": {
"id": "9f887774-d577-4d2f-b109-82951065993b",
"name": "Team",
"country": "CA",
"industry": "",
"team_type": "PM",
"internal_name": "Team",
"app_url": "https://api.certn.co/",
"compliance_region": {
"id": "eac92691-2ba5-46c6-8e76-1ca85db2a142",
"name": "Initial",
"country": "CA",
"team_type": "PM",
"sub_region": "",
"default": true,
"score_value_field": "certn_score",
"score_label_field": "report_summary.report_result_label",
"show_legal_us": false,
"show_credit_report": true,
"show_fcra": false,
"require_address_history": true
},
"settings_config": {
"get_org_name": "Team",
"org_name": "Team",
"org_logo_link": "https://certn-images.s3.amazonaws.com/yourlogo_here_copy.png",
"org_primary_color": "#35c9b3",
"whitelabel_report": false,
"whitelabel_emails": false,
"compact_pdf_report": false,
"behavioural_test_req": false,
"emergency_contact_req": false,
"personal_ref_req": false,
"education_req": false,
"tenancy_years_amount_req": 4,
"tenancy_ref_amount_req": 1,
"tenancy_ref_email_req": false,
"tenancy_ref_phone_req": false,
"employer_years_amount_req": 0,
"employer_ref_req": false,
"employer_ref_email_req": false,
"employer_ref_phone_req": false,
"document_required": false,
"cover_letter_req": false,
"government_id_req": false,
"proof_of_income_req": false,
"resume_req": false,
"visa_req": false,
"personal_ref_amount_req": 0,
"passport_req": false,
"hide_detailed_financial": false,
"hide_sin_ssn": true,
"hide_date_of_birth": false,
"enable_rcmp_reflow": false,
"hide_id_verification_photos": false,
"hide_current_address": true,
"require_id_with_address": false,
"hide_activity_log": true,
"redirect_url": null,
"custom_tracks": [],
"my_crc_region": null,
"hide_ssn_trace": true,
"request_base": true,
"request_behavioural": true,
"request_softcheck": true,
"request_equifax": false,
"request_identity_verification": false,
"request_enhanced_identity_verification": false,
"request_criminal_record_check": false,
"request_enhanced_criminal_record_check": false,
"request_vulnerable_sector_criminal_record_check": false,
"request_motor_vehicle_records": false,
"request_education_verification": false,
"request_employment_verification": false,
"request_us_criminal_softcheck": false,
"request_us_ssn_verification": false,
"request_employer_references": false,
"request_address_references": true,
"request_employer_phone_references": false,
"request_address_phone_references": false,
"request_international_criminal_record_check": false,
"request_soquij": false,
"request_instant_verify_employment": false,
"request_instant_verify_education": false,
"request_instant_verify_credential": false,
"employer_references_min": 3,
"employer_references_max": 3,
"address_references_min": 2,
"address_references_max": 2,
"employment_verification_min": 3,
"employment_verification_max": 3,
"education_verification_min": 1,
"education_verification_max": 1,
"credential_verification_min": 1,
"credential_verification_max": 1,
"credential_verification_level": "ALL",
"education_verification_level": "ALL",
"employer_references_years": 5,
"address_references_years": 3,
"employment_verification_years": 5,
"employment_verification_years_or_individually": "INDIVIDUALLY",
"address_references_years_or_individually": "INDIVIDUALLY",
"employer_references_years_or_individually": "INDIVIDUALLY",
"us_criminal_record_check_years": 7,
"applicant_login": false,
"exclude_softcheck_possible_matches": false,
"workable_fast_complete": false,
"review_all_negative_mvr_results": false,
"limit_education_verifications": false
},
"billing_plan": {
},
"google_analytics_key": "",
"adwords_key": "",
"adwords_conversion_key": "",
"external_domain": ""
}
}
],
"selected_application": {
"is_selected": false,
"applicants": []
},
"use_team_link": false,
"length_of_lease": null
}{
"request_softcheck": true,
"email": "[email protected]",
"owner_id" : "bd78a737-16cf-496a-9c3a-7b9e5533cfce"
}{
"request_softcheck": true,
"email": "[email protected]",
"information": {
"first_name": "Will",
"last_name": "Nettke",
"date_of_birth": "1970-06-28",
"addresses": [
{
"address": "4412 King Alfred Court",
"city": "Victoria",
"province_state": "BC",
"country": "CA",
"current": true
}
]
},
"position_or_property_location": {
"address": "Tiffany & Co., 97 Greene St",
"city": "Victoria",
"province_state": "BC",
"country": "CA",
"postal_code": "v8t3n9",
"location_type": "Property Location"
},
"owner_id": "bd78a737-16cf-496a-9c3a-7b9e5533cfce"
}