{"info":{"_postman_id":"8f1a1d6b-81bf-48cc-a19f-f12fa57cc73d","name":"Vetty API","description":"<html><head></head><body><p>Vetty Restful API allows customers to seamlessly integrate background checks into their workflow and manage the process and get notifications from customer’s system.</p>\n<p>This Programming Guide is designed to help customers get up-and-running with Vetty's background screening services, both by providing the necessary context to understand the background screening industry and its regulations, and by giving technical guidance on how to work with the Vetty API.</p>\n<h2 id=\"getting-started\">Getting Started</h2>\n<h5 id=\"step-1-get-access-token\">Step 1: Get access token</h5>\n<ul>\n<li><p><strong>Get API keys:</strong> Get your keys from API section of your Client Dashboard. After you login to Client Dashboard, navigate to <em>Settings</em> -&gt; <em>API Management</em> -&gt; <em>API Management System</em>, and add a new API key. Each API key is associated with an IP range, requests should be made from the IP range defined for the API key.</p>\n</li>\n<li><p><strong>Bearer Token:</strong> You can use the token from the previous step as Bearer Token when making any of the API calls. Pass the token as <strong>Authorization</strong> header with value <strong>Bearer</strong> .</p>\n</li>\n</ul>\n<h5 id=\"step-2-create-an-applicant\">Step 2: Create an Applicant</h5>\n<p><code>_POST /applicants_</code></p>\n<p>Minimum fields for creating an application are (first name, last name, email). Further fields will likely be needed to initiate a screening on the applicant.</p>\n<h5 id=\"step-3-upload-required-documents\">Step 3: Upload required documents</h5>\n<p><code>_POST /applicants/{applicant_id}/documents_</code></p>\n<p>Upload required documents for screening.</p>\n<h5 id=\"step-4-create-a-screening\">Step 4: Create a Screening</h5>\n<p><code>POST /screenings</code></p>\n<p>You will need a applicantId and packageId in order to create a screening. You can get the packageId by logging into Client Dashboard, after login, click on <code>Packages</code> in the left navigation and click on <code>Get Package ID</code> for the package you want to select for screening. You have 2 workflow options for creating a screening.</p>\n<ul>\n<li><p>Send the candidate an email invite.</p>\n</li>\n<li><p>If all required candidate fields already exist, simply initiate the screening.</p>\n</li>\n</ul>\n<h5 id=\"step-5-get-screening-status\">Step 5: Get Screening status</h5>\n<p><code>GET /screenings/{screening_id}</code></p>\n<p>Get the status of the screening by calling GET /screening/{screening_id} endpoint.</p>\n<h2 id=\"screening\">Screening</h2>\n<p>In order to screen an applicant, we need to collect data like, date of birth, ssn, etc... Vetty supports two forms of data collection.</p>\n<ul>\n<li><p><strong>Client Data Collection Flow:</strong> In this flow, client collects all the required data to run the screenings and submits them as part of the applicant creation.</p>\n<ul>\n<li><p>{ \"first_name\": \"John\", \"last_name\": \"Doe\", \"middle_name\": \"\", \"middle_name_exists\": false, \"email\": \"<a href=\"https://mailto:john.doe@vetty.co\">john.doe@vetty.co</a>\", \"dob\": \"1993-01-05\", \"ssn\": \"1231111234\", \"phone\": \"(441) 111-1111\", \"address\": { \"street\": \"123 Main St\", \"city\": \"New York\", \"state\": \"NY\", \"county\": \"New York\", \"zipcode\": \"10011\", \"country\": \"USA\" }, \"driver_license\": { \"number\": \"111-222-3333\", \"state\": \"NY\" }}</p>\n</li>\n<li><p>{ \"applicant_id\": \"93b5e486-32ab-4f32-8bbd-c713c44770a1\", \"package_id\": \"3654242b-16ac-42ee-8e00-bc27d49d47d1\"}</p>\n</li>\n<li><p><code>GET /screenings/{screening_id}</code><br>  Get the status of screening</p>\n</li>\n</ul>\n</li>\n<li><p><strong>Vetty Data Collection Flow:</strong> In this flow, client creates an applicant with basic information and initiates email invite.</p>\n<ul>\n<li><p>{ \"first_name\": \"John\", \"last_name\": \"Doe\", \"email\": \"<a href=\"https://mailto:john.doe@vetty.co\">john.doe@vetty.co</a>\",}</p>\n</li>\n<li><p>{ \"applicant_id\": \"93b5e486-32ab-4f32-8bbd-c713c44770a1\", \"package_id\": \"3654242b-16ac-42ee-8e00-bc27d49d47d1\", \"invite\": { \"method\": \"email\" }}</p>\n</li>\n<li><p>{ \"first_name\": \"John\", \"last_name\": \"Doe\", \"middle_name\": \"\", \"middle_name_exists\": false, \"email\": \"<a href=\"https://mailto:john.doe@vetty.co\">john.doe@vetty.co</a>\", \"dob\": \"1993-01-05\", \"ssn\": \"1231111234\", \"phone\": \"(441) 111-1111\", \"address\": { \"street\": \"123 Main St\", \"city\": \"New York\", \"state\": \"NY\", \"county\": \"New York\", \"zipcode\": \"10011\", \"country\": \"USA\" }, \"driver_license\": { \"number\": \"111-222-3333\", \"state\": \"NY\" }}</p>\n</li>\n<li><p><code>GET /screenings/{screening_id}</code><br>  Get the status of screening</p>\n</li>\n</ul>\n</li>\n</ul>\n<h2 id=\"webhook\">Webhook:</h2>\n<h3 id=\"steps-to-add-webhook\">Steps to add webhook:</h3>\n<ul>\n<li><p>Login to Vetty client portal</p>\n</li>\n<li><p>Navigate to Setting tab -&gt; Go to API Management -&gt; Go to WebHook</p>\n</li>\n<li><p>Click on the Add WebHook button</p>\n</li>\n<li><p>Add URL and secret key and then click on Add to save the data.</p>\n<ul>\n<li><p>URL begins with HTTPS secure protocol</p>\n</li>\n<li><p>Secret key count be any string value</p>\n</li>\n</ul>\n</li>\n</ul>\n<h3 id=\"webhook-call-and-process\">Webhook call and process:</h3>\n<p>When the event occurs, the URL specified in the webhook will be called as a <code>POST</code> with the payload from the event, e.g.,</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\"applicant_id\": \"5fd37fac6676c40007728c66\", \"status\": \"archived\"}\n\n</code></pre><p>In addition to the payload, <code>vetty-sign</code> header is sent as part of the request, this header can be used to authenticate the request is generated by Vetty.</p>\n<p>The value in the header is generated as below:</p>\n<ul>\n<li><p>Encode the secret key and payload data using UTF-8 and convert to bytes.</p>\n</li>\n<li><p>Create an SHA-256 Hash of the above data</p>\n</li>\n<li><p>Convert the above data into Hexadecimal format</p>\n</li>\n</ul>\n<h2 id=\"api-rate-limiter\">API Rate Limiter</h2>\n<p>Vetty API ensures fair usage of the API among all the users by only allowing 20000 requests per day which is 800 requests per hour.</p>\n<h2 id=\"environments\">Environments</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Environment</th>\n<th>Host</th>\n<th>Purpose</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>UAT (Sandbox)</td>\n<td><code>https://uatapi.vetty.co</code></td>\n<td>Testing and development</td>\n</tr>\n<tr>\n<td>Production</td>\n<td><code>https://api.vetty.co</code></td>\n<td>Live screenings</td>\n</tr>\n</tbody>\n</table>\n</div><p>Please use the UAT environment to test your integration before going live. Once your integration is working as expected, update your host URL to production.</p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"owner":"925449","collectionId":"8f1a1d6b-81bf-48cc-a19f-f12fa57cc73d","publishedId":"T17M8S81","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"EF5B25"},"publishDate":"2020-12-29T15:23:17.000Z"},"item":[{"name":"API Endpoints","item":[{"name":"Applicant","item":[{"name":"Create a new applicant","id":"2a6c1f7c-585e-46cd-b137-5012853147a6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{access_token}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"first_name\": \"John\",\n    \"last_name\": \"Doe\",\n    \"middle_name\": \"\",\n    \"middle_name_exists\": false,\n    \"email\": \"john.doe@vetty.co\",\n    \"dob\": \"1993-01-05\",\n    \"ssn\": \"1231111234\",\n    \"phone\": \"4411111111\",\n    \"external_id\": \"123111123124\",\n    \"address\": {\n        \"street\": \"123 Main St\",\n        \"city\": \"New York\",\n        \"state\": \"NY\",\n        \"county\": \"New York\",\n        \"zipcode\": \"10011\",\n        \"country\": \"USA\"\n    },\n    \"previous_address\": [\n        {\n            \"address_id\": 1,\n            \"city\": \"Schenectady\",\n            \"from_month\": \"12\",\n            \"from_year\": \"2007\",\n            \"state\": \"NY\",\n            \"street\": \"Eastern Subway\",\n            \"street2\": \"\",\n            \"to_month\": \"10\",\n            \"to_year\": \"2011\",\n            \"zipcode\": \"12345\"\n        }\n    ],\n    \"former_name\": true,\n    \"former_details\": [\n        {\n            \"former_id\": 1,\n            \"first_name\": \"John\",\n            \"last_name\": \"Doey\",\n            \"from_month\": \"01\",\n            \"from_year\": \"2005\",\n            \"checkmiddlename\": false,\n            \"middle_name\": \"\",\n            \"to_month\": \"02\",\n            \"to_year\": \"2017\"\n        }\n    ],\n    \"driver_license\": {\n        \"number\": \"1112223333\",\n        \"state\": \"NY\"\n    },\n    \"additional_driver_licenses\": [\n        {\n            \"number\": \"1112223334\",\n            \"state\": \"NY\",\n            \"start_date\": \"2017-01-01\",\n            \"end_date\": \"2019-12-31\"\n        }\n    ],\n    \"education_history\": [\n        {\n            \"school_name\": \"NY degree colage\",\n            \"degree\": {\n                \"major\": \"Software Systems\",\n                \"degree_name\": \"Bachelors\",\n                \"degree_type\": \"Masters\",\n                \"graduation_date\": \"2010-06-01\",\n                \"degree_completed\": true\n            },\n            \"address\": {\n                \"street\": \"123 Main St\",\n                \"city\": \"New York\",\n                \"state\": \"NY\",\n                \"county\": \"New York\",\n                \"zipcode\": \"10011\",\n                \"country\": \"USA\"\n            },\n            \"first_name\": \"John\",\n            \"last_name\": \"Doe\",\n            \"middle_name\": \"\",\n            \"start_date\": \"2008-02-14\",\n            \"end_date\": \"2011-08-11\",\n            \"gpa\": \"4.0\",\n            \"supporting_document_ids\": [\n                \"e3f2a6b6-6806-4ba4-aceb-443f8b754fac\",\n                \"d4dgwhfs-4321-4ba4-aceb-443ijw354fad\"\n            ]\n        }\n    ],\n    \"employment_history\": [\n        {\n            \"name_of_employer\": \"Vetty\",\n            \"job_title\": \"Software Developer\",\n            \"start_date\": \"2017-01-01\",\n            \"end_date\": \"2019-12-31\",\n            \"address\": {\n                \"street\": \"123 Main St\",\n                \"city\": \"New York\",\n                \"state\": \"NY\",\n                \"county\": \"New York\",\n                \"zipcode\": \"10011\",\n                \"country\": \"USA\"\n            },\n            \"fax\": \"1234324\",\n            \"current_employer\": true,\n            \"self_employed\": false,\n            \"permission_to_contact\": true\n        }\n    ],\n    \"licenses\": [\n        {\n            \"type\": \"license type\",\n            \"number\": \"1341342134231\",\n            \"expiration_date\": \"2020-01-01\",\n            \"certifying_body\": \"certifying body name\",\n            \"supporting_document_ids\": [\n                \"e3f2a6b6-6806-4ba4-aceb-443f8b754fac\",\n                \"d4dgwhfs-4321-4ba4-aceb-443ijw354fad\"\n            ]\n        }\n    ],\n    \"references\": [\n        {\n            \"name\": \"Prince\",\n            \"phone\": \"4411111111\",\n            \"alternate_phone\": \"4411111111\",\n            \"email\": \"john.doe@vetty.co\",\n            \"relationship\": \"Manager\",\n            \"other_relationship\": \"\",\n            \"address\": {\n                \"street\": \"123 Main St\",\n                \"city\": \"New York\",\n                \"state\": \"NY\",\n                \"zipcode\": \"10011\"\n            }\n        }\n    ],\n    \"i9form_details\": {\n        \"verification\": {\n            \"verification_mode\": \"employee_authorized_representative\",\n            \"repr_email\": \"john.doe@vetty.co\",\n            \"repr_phone\": \"4411111111\"\n        }\n    },\n    \"healthcare_license\": [\n        {\n            \"license_code\": \"acupuncturist_license\",\n            \"candidate_name\": \"John doey\",\n            \"certifying_body\": \"vetty verify\",\n            \"license_number\": \"DQ128h8WD\",\n            \"issued_state\": \"CA\",\n            \"license_issued_date\": \"mm-yyyy\",\n            \"license_issued_expiry\": \"mm-yyyy\",\n            \"supporting_document_ids\": [\n                \"e3f2a6b6-6806-4ba4-aceb-443f8b754fac\"\n            ]\n        }\n    ],\n    \"expected_empstartdate\": \"2023-06-20\",\n    \"send_sms\" : true,\n    \"cost_center_id\": \"b4f23666-6805-4fa4-nceb-443f8b754gde\",\n    \"department\": \"6759059bd90cf07c450965ea\",\n    \"expected_annual_salary\": 10000\n}"},"url":"{{host}}/cfapi/v1/applicants","description":"<p>Creates a new applicant</p>\n","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"8f1a1d6b-81bf-48cc-a19f-f12fa57cc73d","id":"8f1a1d6b-81bf-48cc-a19f-f12fa57cc73d","name":"Vetty API","type":"collection"}},"urlObject":{"path":["cfapi","v1","applicants"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"5ab39deb-d152-431b-b70f-9b6cf49da36b","name":"New applicant will all data","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{access_token}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"first_name\": \"John\",\n    \"last_name\": \"Doe\",\n    \"middle_name\": \"\",\n    \"middle_name_exists\": false,\n    \"email\": \"john.doe@vetty.co\",\n    \"dob\": \"1993-01-05\",\n    \"ssn\": \"1231111234\",\n    \"phone\": \"(441) 111-1111\",\n    \"external_id\": \"123111123124\",\n    \"expected_annual_salary\": 10000,\n    \"address\": {\n        \"street\": \"123 Main St\",\n        \"city\": \"New York\",\n        \"state\": \"NY\",\n        \"county\": \"New York\",\n        \"zipcode\": \"10011\",\n        \"country\": \"USA\"\n    },\n    \"previous_address\": [\n        {\n            \"address_id\": 1,\n            \"city\": \"Schenectady\",\n            \"from_month\": \"12\",\n            \"from_year\": \"2007\",\n            \"state\": \"NY\",\n            \"street\": \"Eastern Subway\",\n            \"street2\": \"\",\n            \"to_month\": \"10\",\n            \"to_year\": \"2011\",\n            \"zipcode\": \"12345\"\n        }\n    ],\n    \"former_name\": true,\n    \"former_details\": [\n        {\n            \"former_id\": 1,\n            \"first_name\": \"John\",\n            \"last_name\": \"Doey\",\n            \"from_month\": \"01\",\n            \"from_year\": \"2005\",\n            \"checkmiddlename\": false,\n            \"middle_name\": \"\",\n            \"to_month\": \"02\",\n            \"to_year\": \"2017\"\n        }\n    ],\n    \"expected_empstartdate\": \"2023-06-20\",\n    \"send_sms\": true,\n    \"cost_center_id\": \"b4f23666-6805-4fa4-nceb-443f8b754gde\",\n    \"department\": \"6759059bd90cf07c450965ea\",\n    \"driver_license\": {\n        \"number\": \"111-222-3333\",\n        \"state\": \"NY\"\n    },\n    \"additional_driver_licenses\": [\n        {\n            \"number\": \"111-222-3334\",\n            \"state\": \"NY\",\n            \"start_date\": \"2017-01-01\",\n            \"end_date\": \"2019-12-31\"\n        }\n    ],\n    \"education_history\": [\n        {\n            \"school_name\": \"NY degree colage\",\n            \"degree\": {\n                \"major\": \"Software Systems\",\n                \"degree_name\": \"Bachelors\",\n                \"degree_type\": \"Masters\",\n                \"graduation_date\": \"2010-06-01\",\n                \"degree_completed\": true\n            },\n            \"address\": {\n                \"street\": \"123 Main St\",\n                \"city\": \"New York\",\n                \"state\": \"NY\",\n                \"county\": \"New York\",\n                \"zipcode\": \"10011\",\n                \"country\": \"USA\"\n            },\n            \"first_name\": \"John\",\n            \"last_name\": \"Doe\",\n            \"middle_name\": \"\",\n            \"start_date\": \"2008-02-14\",\n            \"end_date\": \"2011-08-11\",\n            \"gpa\": \"4.0\",\n            \"supporting_document_ids\": [\n                \"e3f2a6b6-6806-4ba4-aceb-443f8b754fac\",\n                \"d4dgwhfs-4321-4ba4-aceb-443ijw354fad\"\n            ]\n        }\n    ],\n    \"employment_history\": [\n        {\n            \"name_of_employer\": \"Vetty\",\n            \"job_title\": \"Software Developer\",\n            \"start_date\": \"2017-01-01\",\n            \"end_date\": \"2019-12-31\",\n            \"address\": {\n                \"street\": \"123 Main St\",\n                \"city\": \"New York\",\n                \"state\": \"NY\",\n                \"county\": \"New York\",\n                \"zipcode\": \"10011\",\n                \"country\": \"USA\"\n            },\n            \"fax\": \"1234324\",\n            \"current_employer\": true,\n            \"self_employed\": false,\n            \"permission_to_contact\": true\n        }\n    ],\n    \"licenses\": [\n        {\n            \"type\": \"license type\",\n            \"number\": \"1341342134231\",\n            \"expiration_date\": \"2020-01-01\",\n            \"certifying_body\": \"certifying body name\",\n            \"supporting_document_ids\": [\n                \"e3f2a6b6-6806-4ba4-aceb-443f8b754fac\",\n                \"d4dgwhfs-4321-4ba4-aceb-443ijw354fad\"\n            ]\n        }\n    ],\n    \"references\": [\n        {\n            \"name\": \"Prince\",\n            \"phone\": \"4411111111\",\n            \"alternate_phone\": \"4411111111\",\n            \"email\": \"harmeet+10.hybrid.client@vetty.co\",\n            \"relationship\": \"Manager\",\n            \"otherRelationship\": \"\",\n            \"address\": {\n                \"street\": \"123 Main St\",\n                \"city\": \"New York\",\n                \"state\": \"NY\",\n                \"zipcode\": \"10011\"\n            }\n        }\n    ],\n    \"i9form_details\": {\n        \"verification\": {\n            \"verification_mode\": \"employee_authorized_representative\",\n            \"repr_email\": \"john.doe@vetty.co\",\n            \"repr_phone\": \"4411111111\"\n        }\n    },\n    \"healthcare_license\": [\n        {\n            \"license_code\": \"acupuncturist_license\",\n            \"candidate_name\": \"John doey\",\n            \"certifying_body\": \"vetty verify\",\n            \"license_number\": \"DQ128h8WD\",\n            \"issued_state\": \"CA\",\n            \"license_issued_date\": \"mm-yyyy\",\n            \"license_issued_expiry\": \"mm-yyyy\",\n            \"supporting_document_ids\": [\n                \"e3f2a6b6-6806-4ba4-aceb-443f8b754fac\"\n            ]\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/cfapi/v1/applicants"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"93b5e486-32ab-4f32-8bbd-c713c44770a1\",\n    \"first_name\": \"John\",\n    \"last_name\": \"Doe\",\n    \"middle_name\": \"\",\n    \"middle_name_exists\": false,\n    \"email\": \"john.doe@vetty.co\",\n    \"dob\": \"1993-01-05\",\n    \"ssn\": \"1231111234\",\n    \"phone\": \"(441) 111-1111\",\n    \"external_id\": \"123111123124\",\n    \"expected_annual_salary\": 10000,\n    \"address\": {\n        \"street\": \"123 Main St\",\n        \"city\": \"New York\",\n        \"state\": \"NY\",\n        \"county\": \"New York\",\n        \"zipcode\": \"10011\",\n        \"country\": \"USA\"\n    },\n    \"previous_address\": [\n        {\n            \"address_id\": 1,\n            \"city\": \"Schenectady\",\n            \"from_month\": \"12\",\n            \"from_year\": \"2007\",\n            \"state\": \"NY\",\n            \"street\": \"Eastern Subway\",\n            \"street2\": \"\",\n            \"to_month\": \"10\",\n            \"to_year\": \"2011\",\n            \"zipcode\": \"12345\"\n        }\n    ],\n    \"former_name\": true,\n    \"expected_empstartdate\": \"2023-06-20\",\n    \"send_sms\" : true,\n    \"cost_center_id\": \"b4f23666-6805-4fa4-nceb-443f8b754gde\",\n    \"department\": \"6759059bd90cf07c450965ea\",\n    \"former_details\": [\n        {\n            \"former_id\": 1,\n            \"first_name\": \"John\",\n            \"last_name\": \"Doey\",\n            \"from_month\": \"01\",\n            \"from_year\": \"2005\",\n            \"checkmiddlename\": false,\n            \"middle_name\": \"\",\n            \"to_month\": \"02\",\n            \"to_year\": \"2017\"\n        }\n    ],\n    \"driver_license\": {\n        \"number\": \"111-222-3333\",\n        \"state\": \"NY\"\n    },\n    \"additional_driver_licenses\": [\n        {\n            \"id\": \"93b5e486-32ab-4f32-8bbd-c713c44770b1\",\n            \"number\": \"111-222-3334\",\n            \"state\": \"NY\",\n            \"start_date\": \"2017-01-01\",\n            \"end_date\": \"2019-12-31\"\n        }\n    ],\n    \"education_history\": [{\n        \"id\": \"93b5e486-32ab-4f32-8bbd-c713c44770c1\",\n        \"school_name\": \"NY degree colage\",\n        \"degree\": {\n            \"major\":\"Software Systems\",\n            \"degree_name\":\"Bachelors\",\n            \"degree_type\":\"Masters\",\n            \"graduation_date\":\"2010-06-01\",\n            \"degree_completed\":true\n        },\n        \"address\": {\n            \"street\": \"123 Main St\",\n            \"city\": \"New York\",\n            \"state\": \"NY\",\n            \"county\": \"New York\",\n            \"zipcode\": \"10011\",\n            \"country\": \"USA\"\n        },\n        \"first_name\": \"John\",\n        \"last_name\": \"Doe\",\n        \"middle_name\": \"\",\n        \"start_date\": \"2008-02-14\",\n        \"end_date\": \"2011-08-11\",\n        \"gpa\": \"4.0\",\n        \"supporting_document_ids\": [\"e3f2a6b6-6806-4ba4-aceb-443f8b754fac\", \"d4dgwhfs-4321-4ba4-aceb-443ijw354fad\"]\n    }],\n    \"employment_history\": [\n        {\n            \"id\": \"93b5e486-32ab-4f32-8bbd-c713c44770d1\",\n            \"name_of_employer\": \"Vetty\",\n            \"job_title\": \"Software Developer\",\n            \"start_date\": \"2017-01-01\",\n            \"end_date\": \"2019-12-31\",\n            \"address\": {\n                \"street\": \"123 Main St\",\n                \"city\": \"New York\",\n                \"state\": \"NY\",\n                \"county\": \"New York\",\n                \"zipcode\": \"10011\",\n                \"country\": \"USA\"\n            },\n            \"fax\": \"1234324\",\n            \"current_employer\": true,\n            \"self_employed\": false,\n            \"permission_to_contact\": true\n        }\n    ],\n    \"licenses\": [\n        {\n            \"id\": \"93b5e486-32ab-4f32-8bbd-c713c44770e1\",\n            \"type\": \"license type\",\n            \"number\": \"1341342134231\",\n            \"expiration_date\": \"2020-01-01\",\n            \"certifying_body\": \"certifying body name\",\n            \"supporting_document_ids\": [\"e3f2a6b6-6806-4ba4-aceb-443f8b754fac\", \"d4dgwhfs-4321-4ba4-aceb-443ijw354fad\"]\n        }\n    ],\n    \"references\": [\n        {\n            \"name\": \"Prince\",\n            \"phone\": \"4411111111\",\n            \"alternate_phone\": \"4411111111\",\n            \"email\": \"harmeet+10.hybrid.client@vetty.co\",\n            \"relationship\": \"Manager\",\n            \"otherRelationship\": \"\",\n            \"address\": {\n                \"street\": \"123 Main St\",\n                \"city\": \"New York\",\n                \"state\": \"NY\",\n                \"zipcode\": \"10011\"\n            }\n        }\n    ],\n    \"i9form_details\": {\n        \"verification\": {\n            \"verification_mode\": \"employee_authorized_representative\",\n            \"repr_email\": \"john.doe@vetty.co\",\n            \"repr_phone\": \"4411111111\"\n        }\n    },\n    \"healthcare_license\": [\n        {\n            \"license_code\": \"acupuncturist_license\",\n            \"candidate_name\": \"John doey\",\n            \"certifying_body\": \"vetty verify\",\n            \"license_number\": \"DQ128h8WD\",\n            \"issued_state\": \"CA\",\n            \"license_issued_date\": \"mm-yyyy\",\n            \"license_issued_expiry\": \"mm-yyyy\",\n            \"supporting_document_ids\": [\n                \"e3f2a6b6-6806-4ba4-aceb-443f8b754fac\"\n            ]\n        }\n    ]\n}"},{"id":"f27bcf07-ea10-4d78-8cfb-a0427792b7c3","name":"New applicant with basic data","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{access_token}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"first_name\": \"John\",\n    \"last_name\": \"Doe\",\n    \"email\": \"john.doe@vetty.co\"\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/cfapi/v1/applicants"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"93b5e486-32ab-4f32-8bbd-c713c44770a1\",\n    \"first_name\": \"John\",\n    \"last_name\": \"Doe\",\n    \"email\": \"john.doe@vetty.co\"\n}"},{"id":"367cad52-5cfe-4a17-9974-806125c9d2fa","name":"New applicant with - healthcare license","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{access_token}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"first_name\": \"John\",\n    \"last_name\": \"Doe\",\n    \"middle_name\": \"\",\n    \"middle_name_exists\": false,\n    \"email\": \"john.doe@vetty.co\",\n    \"dob\": \"1993-01-05\",\n    \"ssn\": \"1231111234\",\n    \"phone\": \"(441) 111-1111\",\n    \"address\": {\n        \"street\": \"123 Main St\",\n        \"city\": \"New York\",\n        \"state\": \"NY\",\n        \"county\": \"New York\",\n        \"zipcode\": \"10011\",\n        \"country\": \"USA\"\n    },\n    \"previous_address\": [\n        {\n            \"address_id\": 1,\n            \"city\": \"Schenectady\",\n            \"from_month\": \"12\",\n            \"from_year\": \"2007\",\n            \"state\": \"NY\",\n            \"street\": \"Eastern Subway\",\n            \"street2\": \"\",\n            \"to_month\": \"10\",\n            \"to_year\": \"2011\",\n            \"zipcode\": \"12345\"\n        }\n    ],\n    \"former_name\": true,\n    \"former_details\": [\n        {\n            \"former_id\": 1,\n            \"first_name\": \"John\",\n            \"last_name\": \"Doey\",\n            \"from_month\": \"01\",\n            \"from_year\": \"2005\",\n            \"checkmiddlename\": false,\n            \"middle_name\": \"\",\n            \"to_month\": \"02\",\n            \"to_year\": \"2017\"\n        }\n    ],\n    \"expected_empstartdate\": \"2023-06-20\",\n    \"send_sms\": true,\n    \"cost_center_id\": \"b4f23666-6805-4fa4-nceb-443f8b754gde\",\n    \"driver_license\": {\n        \"number\": \"111-222-3333\",\n        \"state\": \"NY\"\n    },\n    \"additional_driver_licenses\": [\n        {\n            \"number\": \"111-222-3334\",\n            \"state\": \"NY\",\n            \"start_date\": \"2017-01-01\",\n            \"end_date\": \"2019-12-31\"\n        }\n    ],\n    \"education_history\": [\n        {\n            \"school_name\": \"NY degree colage\",\n            \"degree\": {\n                \"major\": \"Software Systems\",\n                \"degree_name\": \"Bachelors\",\n                \"degree_type\": \"Masters\",\n                \"graduation_date\": \"2010-06-01\",\n                \"degree_completed\": true\n            },\n            \"address\": {\n                \"street\": \"123 Main St\",\n                \"city\": \"New York\",\n                \"state\": \"NY\",\n                \"county\": \"New York\",\n                \"zipcode\": \"10011\",\n                \"country\": \"USA\"\n            },\n            \"first_name\": \"John\",\n            \"last_name\": \"Doe\",\n            \"middle_name\": \"\",\n            \"start_date\": \"2008-02-14\",\n            \"end_date\": \"2011-08-11\",\n            \"gpa\": \"4.0\",\n            \"supporting_document_ids\": [\n                \"e3f2a6b6-6806-4ba4-aceb-443f8b754fac\",\n                \"d4dgwhfs-4321-4ba4-aceb-443ijw354fad\"\n            ]\n        }\n    ],\n    \"employment_history\": [\n        {\n            \"name_of_employer\": \"Vetty\",\n            \"job_title\": \"Software Developer\",\n            \"start_date\": \"2017-01-01\",\n            \"end_date\": \"2019-12-31\",\n            \"address\": {\n                \"street\": \"123 Main St\",\n                \"city\": \"New York\",\n                \"state\": \"NY\",\n                \"county\": \"New York\",\n                \"zipcode\": \"10011\",\n                \"country\": \"USA\"\n            },\n            \"fax\": \"1234324\",\n            \"current_employer\": true,\n            \"self_employed\": false,\n            \"permission_to_contact\": true\n        }\n    ],\n    \"licenses\": [\n        {\n            \"type\": \"license type\",\n            \"number\": \"1341342134231\",\n            \"expiration_date\": \"2020-01-01\",\n            \"certifying_body\": \"certifying body name\",\n            \"supporting_document_ids\": [\n                \"e3f2a6b6-6806-4ba4-aceb-443f8b754fac\",\n                \"d4dgwhfs-4321-4ba4-aceb-443ijw354fad\"\n            ]\n        }\n    ],\n    \"references\": [\n        {\n            \"name\": \"Prince\",\n            \"phone\": \"4411111111\",\n            \"alternate_phone\": \"4411111111\",\n            \"email\": \"harmeet+10.hybrid.client@vetty.co\",\n            \"relationship\": \"Manager\",\n            \"otherRelationship\": \"\",\n            \"address\": {\n                \"street\": \"123 Main St\",\n                \"city\": \"New York\",\n                \"state\": \"NY\",\n                \"zipcode\": \"10011\"\n            }\n        }\n    ],\n    \"i9form_details\": {\n        \"verification\": {\n            \"verification_mode\": \"employee_authorized_representative\",\n            \"repr_email\": \"john.doe@vetty.co\",\n            \"repr_phone\": \"4411111111\"\n        }\n    },\n    \"healthcare_license\": [\n        {\n            \"license_code\": \"acupuncturist_license\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/cfapi/v1/applicants"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"93b5e486-32ab-4f32-8bbd-c713c44770a1\",\n    \"first_name\": \"John\",\n    \"last_name\": \"Doe\",\n    \"middle_name\": \"\",\n    \"middle_name_exists\": false,\n    \"email\": \"john.doe@vetty.co\",\n    \"dob\": \"1993-01-05\",\n    \"ssn\": \"1231111234\",\n    \"phone\": \"(441) 111-1111\",\n    \"address\": {\n        \"street\": \"123 Main St\",\n        \"city\": \"New York\",\n        \"state\": \"NY\",\n        \"county\": \"New York\",\n        \"zipcode\": \"10011\",\n        \"country\": \"USA\"\n    },\n    \"previous_address\": [\n        {\n            \"address_id\": 1,\n            \"city\": \"Schenectady\",\n            \"from_month\": \"12\",\n            \"from_year\": \"2007\",\n            \"state\": \"NY\",\n            \"street\": \"Eastern Subway\",\n            \"street2\": \"\",\n            \"to_month\": \"10\",\n            \"to_year\": \"2011\",\n            \"zipcode\": \"12345\"\n        }\n    ],\n    \"former_name\": true,\n    \"expected_empstartdate\": \"2023-06-20\",\n    \"send_sms\" : true,\n    \"cost_center_id\": \"b4f23666-6805-4fa4-nceb-443f8b754gde\",\n    \"former_details\": [\n        {\n            \"former_id\": 1,\n            \"first_name\": \"John\",\n            \"last_name\": \"Doey\",\n            \"from_month\": \"01\",\n            \"from_year\": \"2005\",\n            \"checkmiddlename\": false,\n            \"middle_name\": \"\",\n            \"to_month\": \"02\",\n            \"to_year\": \"2017\"\n        }\n    ],\n    \"driver_license\": {\n        \"number\": \"111-222-3333\",\n        \"state\": \"NY\"\n    },\n    \"additional_driver_licenses\": [\n        {\n            \"id\": \"93b5e486-32ab-4f32-8bbd-c713c44770b1\",\n            \"number\": \"111-222-3334\",\n            \"state\": \"NY\",\n            \"start_date\": \"2017-01-01\",\n            \"end_date\": \"2019-12-31\"\n        }\n    ],\n    \"education_history\": [{\n        \"id\": \"93b5e486-32ab-4f32-8bbd-c713c44770c1\",\n        \"school_name\": \"NY degree colage\",\n        \"degree\": {\n            \"major\":\"Software Systems\",\n            \"degree_name\":\"Bachelors\",\n            \"degree_type\":\"Masters\",\n            \"graduation_date\":\"2010-06-01\",\n            \"degree_completed\":true\n        },\n        \"address\": {\n            \"street\": \"123 Main St\",\n            \"city\": \"New York\",\n            \"state\": \"NY\",\n            \"county\": \"New York\",\n            \"zipcode\": \"10011\",\n            \"country\": \"USA\"\n        },\n        \"first_name\": \"John\",\n        \"last_name\": \"Doe\",\n        \"middle_name\": \"\",\n        \"start_date\": \"2008-02-14\",\n        \"end_date\": \"2011-08-11\",\n        \"gpa\": \"4.0\",\n        \"supporting_document_ids\": [\"e3f2a6b6-6806-4ba4-aceb-443f8b754fac\", \"d4dgwhfs-4321-4ba4-aceb-443ijw354fad\"]\n    }],\n    \"employment_history\": [\n        {\n            \"id\": \"93b5e486-32ab-4f32-8bbd-c713c44770d1\",\n            \"name_of_employer\": \"Vetty\",\n            \"job_title\": \"Software Developer\",\n            \"start_date\": \"2017-01-01\",\n            \"end_date\": \"2019-12-31\",\n            \"address\": {\n                \"street\": \"123 Main St\",\n                \"city\": \"New York\",\n                \"state\": \"NY\",\n                \"county\": \"New York\",\n                \"zipcode\": \"10011\",\n                \"country\": \"USA\"\n            },\n            \"fax\": \"1234324\",\n            \"current_employer\": true,\n            \"self_employed\": false,\n            \"permission_to_contact\": true\n        }\n    ],\n    \"licenses\": [\n        {\n            \"id\": \"93b5e486-32ab-4f32-8bbd-c713c44770e1\",\n            \"type\": \"license type\",\n            \"number\": \"1341342134231\",\n            \"expiration_date\": \"2020-01-01\",\n            \"certifying_body\": \"certifying body name\",\n            \"supporting_document_ids\": [\"e3f2a6b6-6806-4ba4-aceb-443f8b754fac\", \"d4dgwhfs-4321-4ba4-aceb-443ijw354fad\"]\n        }\n    ],\n    \"references\": [\n        {\n            \"name\": \"Prince\",\n            \"phone\": \"4411111111\",\n            \"alternate_phone\": \"4411111111\",\n            \"email\": \"harmeet+10.hybrid.client@vetty.co\",\n            \"relationship\": \"Manager\",\n            \"otherRelationship\": \"\",\n            \"address\": {\n                \"street\": \"123 Main St\",\n                \"city\": \"New York\",\n                \"state\": \"NY\",\n                \"zipcode\": \"10011\"\n            }\n        }\n    ],\n    \"i9form_details\": {\n        \"verification\": {\n            \"verification_mode\": \"employee_authorized_representative\",\n            \"repr_email\": \"john.doe@vetty.co\",\n            \"repr_phone\": \"4411111111\"\n        }\n    },\n    \"healthcare_license\": [\n        {\n            \"license_code\": \"acupuncturist_license\"\n        }\n    ]\n}"},{"id":"ff7266e1-fc9e-4c16-bfbd-269f5717fe24","name":"New applicant with - healthcare license complete information","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{access_token}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"first_name\": \"John\",\n    \"last_name\": \"Doe\",\n    \"middle_name\": \"\",\n    \"middle_name_exists\": false,\n    \"email\": \"john.doe@vetty.co\",\n    \"dob\": \"1993-01-05\",\n    \"ssn\": \"1231111234\",\n    \"phone\": \"(441) 111-1111\",\n    \"address\": {\n        \"street\": \"123 Main St\",\n        \"city\": \"New York\",\n        \"state\": \"NY\",\n        \"county\": \"New York\",\n        \"zipcode\": \"10011\",\n        \"country\": \"USA\"\n    },\n    \"previous_address\": [\n        {\n            \"address_id\": 1,\n            \"city\": \"Schenectady\",\n            \"from_month\": \"12\",\n            \"from_year\": \"2007\",\n            \"state\": \"NY\",\n            \"street\": \"Eastern Subway\",\n            \"street2\": \"\",\n            \"to_month\": \"10\",\n            \"to_year\": \"2011\",\n            \"zipcode\": \"12345\"\n        }\n    ],\n    \"former_name\": true,\n    \"former_details\": [\n        {\n            \"former_id\": 1,\n            \"first_name\": \"John\",\n            \"last_name\": \"Doey\",\n            \"from_month\": \"01\",\n            \"from_year\": \"2005\",\n            \"checkmiddlename\": false,\n            \"middle_name\": \"\",\n            \"to_month\": \"02\",\n            \"to_year\": \"2017\"\n        }\n    ],\n    \"expected_empstartdate\": \"2023-06-20\",\n    \"send_sms\": true,\n    \"cost_center_id\": \"b4f23666-6805-4fa4-nceb-443f8b754gde\",\n    \"driver_license\": {\n        \"number\": \"111-222-3333\",\n        \"state\": \"NY\"\n    },\n    \"additional_driver_licenses\": [\n        {\n            \"number\": \"111-222-3334\",\n            \"state\": \"NY\",\n            \"start_date\": \"2017-01-01\",\n            \"end_date\": \"2019-12-31\"\n        }\n    ],\n    \"education_history\": [\n        {\n            \"school_name\": \"NY degree colage\",\n            \"degree\": {\n                \"major\": \"Software Systems\",\n                \"degree_name\": \"Bachelors\",\n                \"degree_type\": \"Masters\",\n                \"graduation_date\": \"2010-06-01\",\n                \"degree_completed\": true\n            },\n            \"address\": {\n                \"street\": \"123 Main St\",\n                \"city\": \"New York\",\n                \"state\": \"NY\",\n                \"county\": \"New York\",\n                \"zipcode\": \"10011\",\n                \"country\": \"USA\"\n            },\n            \"first_name\": \"John\",\n            \"last_name\": \"Doe\",\n            \"middle_name\": \"\",\n            \"start_date\": \"2008-02-14\",\n            \"end_date\": \"2011-08-11\",\n            \"gpa\": \"4.0\",\n            \"supporting_document_ids\": [\n                \"e3f2a6b6-6806-4ba4-aceb-443f8b754fac\",\n                \"d4dgwhfs-4321-4ba4-aceb-443ijw354fad\"\n            ]\n        }\n    ],\n    \"employment_history\": [\n        {\n            \"name_of_employer\": \"Vetty\",\n            \"job_title\": \"Software Developer\",\n            \"start_date\": \"2017-01-01\",\n            \"end_date\": \"2019-12-31\",\n            \"address\": {\n                \"street\": \"123 Main St\",\n                \"city\": \"New York\",\n                \"state\": \"NY\",\n                \"county\": \"New York\",\n                \"zipcode\": \"10011\",\n                \"country\": \"USA\"\n            },\n            \"fax\": \"1234324\",\n            \"current_employer\": true,\n            \"self_employed\": false,\n            \"permission_to_contact\": true\n        }\n    ],\n    \"licenses\": [\n        {\n            \"type\": \"license type\",\n            \"number\": \"1341342134231\",\n            \"expiration_date\": \"2020-01-01\",\n            \"certifying_body\": \"certifying body name\",\n            \"supporting_document_ids\": [\n                \"e3f2a6b6-6806-4ba4-aceb-443f8b754fac\",\n                \"d4dgwhfs-4321-4ba4-aceb-443ijw354fad\"\n            ]\n        }\n    ],\n    \"references\": [\n        {\n            \"name\": \"Prince\",\n            \"phone\": \"4411111111\",\n            \"alternate_phone\": \"4411111111\",\n            \"email\": \"harmeet+10.hybrid.client@vetty.co\",\n            \"relationship\": \"Manager\",\n            \"otherRelationship\": \"\",\n            \"address\": {\n                \"street\": \"123 Main St\",\n                \"city\": \"New York\",\n                \"state\": \"NY\",\n                \"zipcode\": \"10011\"\n            }\n        }\n    ],\n    \"i9form_details\": {\n        \"verification\": {\n            \"verification_mode\": \"employee_authorized_representative\",\n            \"repr_email\": \"john.doe@vetty.co\",\n            \"repr_phone\": \"4411111111\"\n        }\n    },\n    \"healthcare_license\": [\n        {\n            \"license_code\": \"acupuncturist_license\",\n            \"candidate_name\": \"John doey\",\n            \"certifying_body\": \"vetty verify\",\n            \"license_number\": \"DQ128h8WD\",\n            \"issued_state\": \"CA\",\n            \"license_issued_date\": \"mm-yyyy\",\n            \"license_issued_expiry\": \"mm-yyyy\",\n            \"supporting_document_ids\": [\n                \"e3f2a6b6-6806-4ba4-aceb-443f8b754fac\"\n            ]\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/cfapi/v1/applicants"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"93b5e486-32ab-4f32-8bbd-c713c44770a1\",\n    \"first_name\": \"John\",\n    \"last_name\": \"Doe\",\n    \"middle_name\": \"\",\n    \"middle_name_exists\": false,\n    \"email\": \"john.doe@vetty.co\",\n    \"dob\": \"1993-01-05\",\n    \"ssn\": \"1231111234\",\n    \"phone\": \"(441) 111-1111\",\n    \"address\": {\n        \"street\": \"123 Main St\",\n        \"city\": \"New York\",\n        \"state\": \"NY\",\n        \"county\": \"New York\",\n        \"zipcode\": \"10011\",\n        \"country\": \"USA\"\n    },\n    \"previous_address\": [\n        {\n            \"address_id\": 1,\n            \"city\": \"Schenectady\",\n            \"from_month\": \"12\",\n            \"from_year\": \"2007\",\n            \"state\": \"NY\",\n            \"street\": \"Eastern Subway\",\n            \"street2\": \"\",\n            \"to_month\": \"10\",\n            \"to_year\": \"2011\",\n            \"zipcode\": \"12345\"\n        }\n    ],\n    \"former_name\": true,\n    \"expected_empstartdate\": \"2023-06-20\",\n    \"send_sms\" : true,\n    \"cost_center_id\": \"b4f23666-6805-4fa4-nceb-443f8b754gde\",\n    \"former_details\": [\n        {\n            \"former_id\": 1,\n            \"first_name\": \"John\",\n            \"last_name\": \"Doey\",\n            \"from_month\": \"01\",\n            \"from_year\": \"2005\",\n            \"checkmiddlename\": false,\n            \"middle_name\": \"\",\n            \"to_month\": \"02\",\n            \"to_year\": \"2017\"\n        }\n    ],\n    \"driver_license\": {\n        \"number\": \"111-222-3333\",\n        \"state\": \"NY\"\n    },\n    \"additional_driver_licenses\": [\n        {\n            \"id\": \"93b5e486-32ab-4f32-8bbd-c713c44770b1\",\n            \"number\": \"111-222-3334\",\n            \"state\": \"NY\",\n            \"start_date\": \"2017-01-01\",\n            \"end_date\": \"2019-12-31\"\n        }\n    ],\n    \"education_history\": [{\n        \"id\": \"93b5e486-32ab-4f32-8bbd-c713c44770c1\",\n        \"school_name\": \"NY degree colage\",\n        \"degree\": {\n            \"major\":\"Software Systems\",\n            \"degree_name\":\"Bachelors\",\n            \"degree_type\":\"Masters\",\n            \"graduation_date\":\"2010-06-01\",\n            \"degree_completed\":true\n        },\n        \"address\": {\n            \"street\": \"123 Main St\",\n            \"city\": \"New York\",\n            \"state\": \"NY\",\n            \"county\": \"New York\",\n            \"zipcode\": \"10011\",\n            \"country\": \"USA\"\n        },\n        \"first_name\": \"John\",\n        \"last_name\": \"Doe\",\n        \"middle_name\": \"\",\n        \"start_date\": \"2008-02-14\",\n        \"end_date\": \"2011-08-11\",\n        \"gpa\": \"4.0\",\n        \"supporting_document_ids\": [\"e3f2a6b6-6806-4ba4-aceb-443f8b754fac\", \"d4dgwhfs-4321-4ba4-aceb-443ijw354fad\"]\n    }],\n    \"employment_history\": [\n        {\n            \"id\": \"93b5e486-32ab-4f32-8bbd-c713c44770d1\",\n            \"name_of_employer\": \"Vetty\",\n            \"job_title\": \"Software Developer\",\n            \"start_date\": \"2017-01-01\",\n            \"end_date\": \"2019-12-31\",\n            \"address\": {\n                \"street\": \"123 Main St\",\n                \"city\": \"New York\",\n                \"state\": \"NY\",\n                \"county\": \"New York\",\n                \"zipcode\": \"10011\",\n                \"country\": \"USA\"\n            },\n            \"fax\": \"1234324\",\n            \"current_employer\": true,\n            \"self_employed\": false,\n            \"permission_to_contact\": true\n        }\n    ],\n    \"licenses\": [\n        {\n            \"id\": \"93b5e486-32ab-4f32-8bbd-c713c44770e1\",\n            \"type\": \"license type\",\n            \"number\": \"1341342134231\",\n            \"expiration_date\": \"2020-01-01\",\n            \"certifying_body\": \"certifying body name\",\n            \"supporting_document_ids\": [\"e3f2a6b6-6806-4ba4-aceb-443f8b754fac\", \"d4dgwhfs-4321-4ba4-aceb-443ijw354fad\"]\n        }\n    ],\n    \"references\": [\n        {\n            \"name\": \"Prince\",\n            \"phone\": \"4411111111\",\n            \"alternate_phone\": \"4411111111\",\n            \"email\": \"harmeet+10.hybrid.client@vetty.co\",\n            \"relationship\": \"Manager\",\n            \"otherRelationship\": \"\",\n            \"address\": {\n                \"street\": \"123 Main St\",\n                \"city\": \"New York\",\n                \"state\": \"NY\",\n                \"zipcode\": \"10011\"\n            }\n        }\n    ],\n    \"i9form_details\": {\n        \"verification\": {\n            \"verification_mode\": \"employee_authorized_representative\",\n            \"repr_email\": \"john.doe@vetty.co\",\n            \"repr_phone\": \"4411111111\"\n        }\n    },\n    \"healthcare_license\": [\n        {\n            \"license_code\": \"acupuncturist_license\",\n            \"candidate_name\": \"John doey\",\n            \"certifying_body\": \"vetty verify\",\n            \"license_number\": \"DQ128h8WD\",\n            \"issued_state\": \"CA\",\n            \"license_issued_date\": \"mm-yyyy\",\n            \"license_issued_expiry\": \"mm-yyyy\",\n            \"supporting_document_ids\": [\n                \"e3f2a6b6-6806-4ba4-aceb-443f8b754fac\"\n            ]\n        }\n    ]\n}"},{"id":"5cbd90c9-5730-4b35-90a8-8484dbe756e3","name":"New applicant with I9 - Employee Authorized Representative","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{access_token}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"first_name\": \"John\",\n    \"last_name\": \"Doe\",\n    \"middle_name\": \"\",\n    \"middle_name_exists\": false,\n    \"email\": \"john.doe@vetty.co\",\n    \"dob\": \"1993-01-05\",\n    \"ssn\": \"1231111234\",\n    \"phone\": \"(441) 111-1111\",\n    \"address\": {\n        \"street\": \"123 Main St\",\n        \"city\": \"New York\",\n        \"state\": \"NY\",\n        \"county\": \"New York\",\n        \"zipcode\": \"10011\",\n        \"country\": \"USA\"\n    },\n    \"previous_address\": [\n        {\n            \"address_id\": 1,\n            \"city\": \"Schenectady\",\n            \"from_month\": \"12\",\n            \"from_year\": \"2007\",\n            \"state\": \"NY\",\n            \"street\": \"Eastern Subway\",\n            \"street2\": \"\",\n            \"to_month\": \"10\",\n            \"to_year\": \"2011\",\n            \"zipcode\": \"12345\"\n        }\n    ],\n    \"former_name\": true,\n    \"former_details\": [\n        {\n            \"former_id\": 1,\n            \"first_name\": \"John\",\n            \"last_name\": \"Doey\",\n            \"from_month\": \"01\",\n            \"from_year\": \"2005\",\n            \"checkmiddlename\": false,\n            \"middle_name\": \"\",\n            \"to_month\": \"02\",\n            \"to_year\": \"2017\"\n        }\n    ],\n    \"driver_license\": {\n        \"number\": \"111-222-3333\",\n        \"state\": \"NY\"\n    },\n    \"additional_driver_licenses\": [\n        {\n            \"number\": \"111-222-3334\",\n            \"state\": \"NY\",\n            \"start_date\": \"2017-01-01\",\n            \"end_date\": \"2019-12-31\"\n        }\n    ],\n    \"education_history\": [\n        {\n            \"school_name\": \"NY degree colage\",\n            \"degree\": {\n                \"major\": \"Software Systems\",\n                \"degree_name\": \"Bachelors\",\n                \"degree_type\": \"Masters\",\n                \"graduation_date\": \"2010-06-01\",\n                \"degree_completed\": true\n            },\n            \"address\": {\n                \"street\": \"123 Main St\",\n                \"city\": \"New York\",\n                \"state\": \"NY\",\n                \"county\": \"New York\",\n                \"zipcode\": \"10011\",\n                \"country\": \"USA\"\n            },\n            \"first_name\": \"John\",\n            \"last_name\": \"Doe\",\n            \"middle_name\": \"\",\n            \"start_date\": \"2008-02-14\",\n            \"end_date\": \"2011-08-11\",\n            \"gpa\": \"4.0\",\n            \"supporting_document_ids\": [\n                \"e3f2a6b6-6806-4ba4-aceb-443f8b754fac\",\n                \"d4dgwhfs-4321-4ba4-aceb-443ijw354fad\"\n            ]\n        }\n    ],\n    \"employment_history\": [\n        {\n            \"name_of_employer\": \"Vetty\",\n            \"job_title\": \"Software Developer\",\n            \"start_date\": \"2017-01-01\",\n            \"end_date\": \"2019-12-31\",\n            \"address\": {\n                \"street\": \"123 Main St\",\n                \"city\": \"New York\",\n                \"state\": \"NY\",\n                \"county\": \"New York\",\n                \"zipcode\": \"10011\",\n                \"country\": \"USA\"\n            },\n            \"fax\": \"1234324\",\n            \"current_employer\": true,\n            \"self_employed\": false,\n            \"permission_to_contact\": true\n        }\n    ],\n    \"licenses\": [\n        {\n            \"type\": \"license type\",\n            \"number\": \"1341342134231\",\n            \"expiration_date\": \"2020-01-01\",\n            \"certifying_body\": \"certifying body name\",\n            \"supporting_document_ids\": [\n                \"e3f2a6b6-6806-4ba4-aceb-443f8b754fac\",\n                \"d4dgwhfs-4321-4ba4-aceb-443ijw354fad\"\n            ]\n        }\n    ],\n    \"references\": [\n        {\n            \"name\": \"Prince\",\n            \"phone\": \"4411111111\",\n            \"alternate_phone\": \"4411111111\",\n            \"email\": \"harmeet+10.hybrid.client@vetty.co\",\n            \"relationship\": \"Manager\",\n            \"otherRelationship\": \"\",\n            \"address\": {\n                \"street\": \"123 Main St\",\n                \"city\": \"New York\",\n                \"state\": \"NY\",\n                \"zipcode\": \"10011\"\n            }\n        }\n    ],\n    \"i9form_details\": {\n        \"verification\": {\n            \"verification_mode\": \"employee_authorized_representative\",\n            \"repr_email\": \"john.doe@vetty.co\",\n            \"repr_phone\": \"4411111111\"\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/cfapi/v1/applicants"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"93b5e486-32ab-4f32-8bbd-c713c44770a1\",\n    \"first_name\": \"John\",\n    \"last_name\": \"Doe\",\n    \"middle_name\": \"\",\n    \"middle_name_exists\": false,\n    \"email\": \"john.doe@vetty.co\",\n    \"dob\": \"1993-01-05\",\n    \"ssn\": \"1231111234\",\n    \"phone\": \"(441) 111-1111\",\n    \"address\": {\n        \"street\": \"123 Main St\",\n        \"city\": \"New York\",\n        \"state\": \"NY\",\n        \"county\": \"New York\",\n        \"zipcode\": \"10011\",\n        \"country\": \"USA\"\n    },\n    \"previous_address\": [\n        {\n            \"address_id\": 1,\n            \"city\": \"Schenectady\",\n            \"from_month\": \"12\",\n            \"from_year\": \"2007\",\n            \"state\": \"NY\",\n            \"street\": \"Eastern Subway\",\n            \"street2\": \"\",\n            \"to_month\": \"10\",\n            \"to_year\": \"2011\",\n            \"zipcode\": \"12345\"\n        }\n    ],\n    \"former_name\": true,\n    \"former_details\": [\n        {\n            \"former_id\": 1,\n            \"first_name\": \"John\",\n            \"last_name\": \"Doey\",\n            \"from_month\": \"01\",\n            \"from_year\": \"2005\",\n            \"checkmiddlename\": false,\n            \"middle_name\": \"\",\n            \"to_month\": \"02\",\n            \"to_year\": \"2017\"\n        }\n    ],\n    \"driver_license\": {\n        \"number\": \"111-222-3333\",\n        \"state\": \"NY\"\n    },\n    \"additional_driver_licenses\": [\n        {\n            \"id\": \"93b5e486-32ab-4f32-8bbd-c713c44770b1\",\n            \"number\": \"111-222-3334\",\n            \"state\": \"NY\",\n            \"start_date\": \"2017-01-01\",\n            \"end_date\": \"2019-12-31\"\n        }\n    ],\n    \"education_history\": [{\n        \"id\": \"93b5e486-32ab-4f32-8bbd-c713c44770c1\",\n        \"school_name\": \"NY degree colage\",\n        \"degree\": {\n            \"major\":\"Software Systems\",\n            \"degree_name\":\"Bachelors\",\n            \"degree_type\":\"Masters\",\n            \"graduation_date\":\"2010-06-01\",\n            \"degree_completed\":true\n        },\n        \"address\": {\n            \"street\": \"123 Main St\",\n            \"city\": \"New York\",\n            \"state\": \"NY\",\n            \"county\": \"New York\",\n            \"zipcode\": \"10011\",\n            \"country\": \"USA\"\n        },\n        \"first_name\": \"John\",\n        \"last_name\": \"Doe\",\n        \"middle_name\": \"\",\n        \"start_date\": \"2008-02-14\",\n        \"end_date\": \"2011-08-11\",\n        \"gpa\": \"4.0\",\n        \"supporting_document_ids\": [\"e3f2a6b6-6806-4ba4-aceb-443f8b754fac\", \"d4dgwhfs-4321-4ba4-aceb-443ijw354fad\"]\n    }],\n    \"employment_history\": [\n        {\n            \"id\": \"93b5e486-32ab-4f32-8bbd-c713c44770d1\",\n            \"name_of_employer\": \"Vetty\",\n            \"job_title\": \"Software Developer\",\n            \"start_date\": \"2017-01-01\",\n            \"end_date\": \"2019-12-31\",\n            \"address\": {\n                \"street\": \"123 Main St\",\n                \"city\": \"New York\",\n                \"state\": \"NY\",\n                \"county\": \"New York\",\n                \"zipcode\": \"10011\",\n                \"country\": \"USA\"\n            },\n            \"fax\": \"1234324\",\n            \"current_employer\": true,\n            \"self_employed\": false,\n            \"permission_to_contact\": true\n        }\n    ],\n    \"licenses\": [\n        {\n            \"id\": \"93b5e486-32ab-4f32-8bbd-c713c44770e1\",\n            \"type\": \"license type\",\n            \"number\": \"1341342134231\",\n            \"expiration_date\": \"2020-01-01\",\n            \"certifying_body\": \"certifying body name\",\n            \"supporting_document_ids\": [\"e3f2a6b6-6806-4ba4-aceb-443f8b754fac\", \"d4dgwhfs-4321-4ba4-aceb-443ijw354fad\"]\n        }\n    ],\n    \"references\": [\n        {\n            \"name\": \"Prince\",\n            \"phone\": \"4411111111\",\n            \"alternate_phone\": \"4411111111\",\n            \"email\": \"harmeet+10.hybrid.client@vetty.co\",\n            \"relationship\": \"Manager\",\n            \"otherRelationship\": \"\",\n            \"address\": {\n                \"street\": \"123 Main St\",\n                \"city\": \"New York\",\n                \"state\": \"NY\",\n                \"zipcode\": \"10011\"\n            }\n        }\n    ],\n    \"i9form_details\": {\n        \"verification\": {\n            \"verification_mode\": \"employee_authorized_representative\",\n            \"repr_email\": \"john.doe@vetty.co\",\n            \"repr_phone\": \"4411111111\"\n        }\n    }\n}"},{"id":"aa2fe728-4e7d-43ed-a883-352406dda35a","name":"New applicant with I9 - Employer Physical Verification","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{access_token}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"first_name\": \"John\",\n    \"last_name\": \"Doe\",\n    \"middle_name\": \"\",\n    \"middle_name_exists\": false,\n    \"email\": \"john.doe@vetty.co\",\n    \"dob\": \"1993-01-05\",\n    \"ssn\": \"1231111234\",\n    \"phone\": \"(441) 111-1111\",\n    \"address\": {\n        \"street\": \"123 Main St\",\n        \"city\": \"New York\",\n        \"state\": \"NY\",\n        \"county\": \"New York\",\n        \"zipcode\": \"10011\",\n        \"country\": \"USA\"\n    },\n    \"previous_address\": [\n        {\n            \"address_id\": 1,\n            \"city\": \"Schenectady\",\n            \"from_month\": \"12\",\n            \"from_year\": \"2007\",\n            \"state\": \"NY\",\n            \"street\": \"Eastern Subway\",\n            \"street2\": \"\",\n            \"to_month\": \"10\",\n            \"to_year\": \"2011\",\n            \"zipcode\": \"12345\"\n        }\n    ],\n    \"former_name\": true,\n    \"former_details\": [\n        {\n            \"former_id\": 1,\n            \"first_name\": \"John\",\n            \"last_name\": \"Doey\",\n            \"from_month\": \"01\",\n            \"from_year\": \"2005\",\n            \"checkmiddlename\": false,\n            \"middle_name\": \"\",\n            \"to_month\": \"02\",\n            \"to_year\": \"2017\"\n        }\n    ],\n    \"driver_license\": {\n        \"number\": \"111-222-3333\",\n        \"state\": \"NY\"\n    },\n    \"additional_driver_licenses\": [\n        {\n            \"number\": \"111-222-3334\",\n            \"state\": \"NY\",\n            \"start_date\": \"2017-01-01\",\n            \"end_date\": \"2019-12-31\"\n        }\n    ],\n    \"education_history\": [\n        {\n            \"school_name\": \"NY degree colage\",\n            \"degree\": {\n                \"major\": \"Software Systems\",\n                \"degree_name\": \"Bachelors\",\n                \"degree_type\": \"Masters\",\n                \"graduation_date\": \"2010-06-01\",\n                \"degree_completed\": true\n            },\n            \"address\": {\n                \"street\": \"123 Main St\",\n                \"city\": \"New York\",\n                \"state\": \"NY\",\n                \"county\": \"New York\",\n                \"zipcode\": \"10011\",\n                \"country\": \"USA\"\n            },\n            \"first_name\": \"John\",\n            \"last_name\": \"Doe\",\n            \"middle_name\": \"\",\n            \"start_date\": \"2008-02-14\",\n            \"end_date\": \"2011-08-11\",\n            \"gpa\": \"4.0\",\n            \"supporting_document_ids\": [\n                \"e3f2a6b6-6806-4ba4-aceb-443f8b754fac\",\n                \"d4dgwhfs-4321-4ba4-aceb-443ijw354fad\"\n            ]\n        }\n    ],\n    \"employment_history\": [\n        {\n            \"name_of_employer\": \"Vetty\",\n            \"job_title\": \"Software Developer\",\n            \"start_date\": \"2017-01-01\",\n            \"end_date\": \"2019-12-31\",\n            \"address\": {\n                \"street\": \"123 Main St\",\n                \"city\": \"New York\",\n                \"state\": \"NY\",\n                \"county\": \"New York\",\n                \"zipcode\": \"10011\",\n                \"country\": \"USA\"\n            },\n            \"fax\": \"1234324\",\n            \"current_employer\": true,\n            \"self_employed\": false,\n            \"permission_to_contact\": true\n        }\n    ],\n    \"licenses\": [\n        {\n            \"type\": \"license type\",\n            \"number\": \"1341342134231\",\n            \"expiration_date\": \"2020-01-01\",\n            \"certifying_body\": \"certifying body name\",\n            \"supporting_document_ids\": [\n                \"e3f2a6b6-6806-4ba4-aceb-443f8b754fac\",\n                \"d4dgwhfs-4321-4ba4-aceb-443ijw354fad\"\n            ]\n        }\n    ],\n    \"references\": [\n        {\n            \"name\": \"Prince\",\n            \"phone\": \"4411111111\",\n            \"alternate_phone\": \"4411111111\",\n            \"email\": \"harmeet+10.hybrid.client@vetty.co\",\n            \"relationship\": \"Manager\",\n            \"otherRelationship\": \"\",\n            \"address\": {\n                \"street\": \"123 Main St\",\n                \"city\": \"New York\",\n                \"state\": \"NY\",\n                \"zipcode\": \"10011\"\n            }\n        }\n    ],\n    \"i9form_details\": {\n        \"verification\": {\n            \"verification_mode\": \"employer_physical_verification\"\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/cfapi/v1/applicants"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"93b5e486-32ab-4f32-8bbd-c713c44770a1\",\n    \"first_name\": \"John\",\n    \"last_name\": \"Doe\",\n    \"middle_name\": \"\",\n    \"middle_name_exists\": false,\n    \"email\": \"john.doe@vetty.co\",\n    \"dob\": \"1993-01-05\",\n    \"ssn\": \"1231111234\",\n    \"phone\": \"(441) 111-1111\",\n    \"address\": {\n        \"street\": \"123 Main St\",\n        \"city\": \"New York\",\n        \"state\": \"NY\",\n        \"county\": \"New York\",\n        \"zipcode\": \"10011\",\n        \"country\": \"USA\"\n    },\n    \"previous_address\": [\n        {\n            \"address_id\": 1,\n            \"city\": \"Schenectady\",\n            \"from_month\": \"12\",\n            \"from_year\": \"2007\",\n            \"state\": \"NY\",\n            \"street\": \"Eastern Subway\",\n            \"street2\": \"\",\n            \"to_month\": \"10\",\n            \"to_year\": \"2011\",\n            \"zipcode\": \"12345\"\n        }\n    ],\n    \"former_name\": true,\n    \"former_details\": [\n        {\n            \"former_id\": 1,\n            \"first_name\": \"John\",\n            \"last_name\": \"Doey\",\n            \"from_month\": \"01\",\n            \"from_year\": \"2005\",\n            \"checkmiddlename\": false,\n            \"middle_name\": \"\",\n            \"to_month\": \"02\",\n            \"to_year\": \"2017\"\n        }\n    ],\n    \"driver_license\": {\n        \"number\": \"111-222-3333\",\n        \"state\": \"NY\"\n    },\n    \"additional_driver_licenses\": [\n        {\n            \"id\": \"93b5e486-32ab-4f32-8bbd-c713c44770b1\",\n            \"number\": \"111-222-3334\",\n            \"state\": \"NY\",\n            \"start_date\": \"2017-01-01\",\n            \"end_date\": \"2019-12-31\"\n        }\n    ],\n    \"education_history\": [{\n        \"id\": \"93b5e486-32ab-4f32-8bbd-c713c44770c1\",\n        \"school_name\": \"NY degree colage\",\n        \"degree\": {\n            \"major\":\"Software Systems\",\n            \"degree_name\":\"Bachelors\",\n            \"degree_type\":\"Masters\",\n            \"graduation_date\":\"2010-06-01\",\n            \"degree_completed\":true\n        },\n        \"address\": {\n            \"street\": \"123 Main St\",\n            \"city\": \"New York\",\n            \"state\": \"NY\",\n            \"county\": \"New York\",\n            \"zipcode\": \"10011\",\n            \"country\": \"USA\"\n        },\n        \"first_name\": \"John\",\n        \"last_name\": \"Doe\",\n        \"middle_name\": \"\",\n        \"start_date\": \"2008-02-14\",\n        \"end_date\": \"2011-08-11\",\n        \"gpa\": \"4.0\",\n        \"supporting_document_ids\": [\"e3f2a6b6-6806-4ba4-aceb-443f8b754fac\", \"d4dgwhfs-4321-4ba4-aceb-443ijw354fad\"]\n    }],\n    \"employment_history\": [\n        {\n            \"id\": \"93b5e486-32ab-4f32-8bbd-c713c44770d1\",\n            \"name_of_employer\": \"Vetty\",\n            \"job_title\": \"Software Developer\",\n            \"start_date\": \"2017-01-01\",\n            \"end_date\": \"2019-12-31\",\n            \"address\": {\n                \"street\": \"123 Main St\",\n                \"city\": \"New York\",\n                \"state\": \"NY\",\n                \"county\": \"New York\",\n                \"zipcode\": \"10011\",\n                \"country\": \"USA\"\n            },\n            \"fax\": \"1234324\",\n            \"current_employer\": true,\n            \"self_employed\": false,\n            \"permission_to_contact\": true\n        }\n    ],\n    \"licenses\": [\n        {\n            \"id\": \"93b5e486-32ab-4f32-8bbd-c713c44770e1\",\n            \"type\": \"license type\",\n            \"number\": \"1341342134231\",\n            \"expiration_date\": \"2020-01-01\",\n            \"certifying_body\": \"certifying body name\",\n            \"supporting_document_ids\": [\"e3f2a6b6-6806-4ba4-aceb-443f8b754fac\", \"d4dgwhfs-4321-4ba4-aceb-443ijw354fad\"]\n        }\n    ],\n    \"references\": [\n        {\n            \"name\": \"Prince\",\n            \"phone\": \"4411111111\",\n            \"alternate_phone\": \"4411111111\",\n            \"email\": \"harmeet+10.hybrid.client@vetty.co\",\n            \"relationship\": \"Manager\",\n            \"otherRelationship\": \"\",\n            \"address\": {\n                \"street\": \"123 Main St\",\n                \"city\": \"New York\",\n                \"state\": \"NY\",\n                \"zipcode\": \"10011\"\n            }\n        }\n    ],\n    \"i9form_details\": {\n        \"verification\": {\n            \"verification_mode\": \"employer_physical_verification\"\n        }\n    }\n}"},{"id":"562f0ff5-c9e4-438d-9d0f-e14aa626e8fe","name":"New applicant with department","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{access_token}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"first_name\": \"John\",\n    \"last_name\": \"Doe\",\n    \"email\": \"john.doe@vetty.co\",\n    \"department\": \"6759059bd90cf07c450965ea\"\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/cfapi/v1/applicants"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"93b5e486-32ab-4f32-8bbd-c713c44770a1\",\n    \"first_name\": \"John\",\n    \"last_name\": \"Doe\",\n    \"email\": \"john.doe@vetty.co\",\n    \"department\": \"6759059bd90cf07c450965ea\"\n}"},{"id":"c1396ad2-7db4-4d60-964c-4685f9cc15ad","name":"Create a new applicant - Bad Request","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{access_token}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"first_name\": \"John\"\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/cfapi/v1/applicants"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"error message\"\n}"}],"_postman_id":"2a6c1f7c-585e-46cd-b137-5012853147a6"},{"name":"Get all applicants","id":"fa14be94-d19e-4003-adf2-96d763e670f8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{access_token}}"},{"key":"Content-Type","type":"text","value":"application/json"}],"url":"{{host}}/cfapi/v1/applicants?page=0&size=100&status=in_progress&historical=false","description":"<p>Get all applicants, you can filter the list by passing in the screening status query parameter. Here are the valid <code>status</code> values: <code>in_progress</code>, <code>approval_needed</code>, <code>clear</code>, <code>review_required</code>, <code>inconclusive</code>, <code>error</code>, <code>idv_fail</code>, <code>archived</code>, <code>adverse</code>, <code>dispute_under_review</code>, <code>pre_adverse</code>, <code>accepted</code>, <code>not_meet_hiring_criteria</code>, <code>coi_expired</code> and <code>inconclusive_ca</code>. This endpoint will return any active applicants matching filter criteria. If no matching records are found, response will contain only the \"message\" field. Be ware that older applicants will eventually be moved into historical storage and could be retrieved using query parameter \"historical\" with value of \"true\". For applicant to be moved to historical storage their background check must be completed and date of creation should be over 2 months ago.</p>\n<p>[Note: <strong>updated_date</strong> timestamp only changed on major applicant events and is not changed in other cases]</p>\n","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"8f1a1d6b-81bf-48cc-a19f-f12fa57cc73d","id":"8f1a1d6b-81bf-48cc-a19f-f12fa57cc73d","name":"Vetty API","type":"collection"}},"urlObject":{"path":["cfapi","v1","applicants"],"host":["{{host}}"],"query":[{"description":{"content":"<p>Zero based index</p>\n","type":"text/plain"},"key":"page","value":"0"},{"description":{"content":"<p>The page size to be returned, max 1000</p>\n","type":"text/plain"},"key":"size","value":"100"},{"description":{"content":"<p>Applicant status</p>\n","type":"text/plain"},"key":"status","value":"in_progress"},{"key":"historical","value":"false"}],"variable":[]}},"response":[{"id":"b3567d2b-529d-447c-87b4-68f0542e507c","name":"Get all applicants","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"url":{"raw":"{{host}}/cfapi/v1/applicants?page=0&size=100","host":["{{host}}"],"path":["cfapi","v1","applicants"],"query":[{"key":"page","value":"0","description":"Zero based index"},{"key":"size","value":"100","description":"The page size to be returned"}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"content\" : [\n        {\n            \"id\": \"93b5e486-32ab-4f32-8bbd-c713c44770a1\",\n            \"first_name\": \"John\",\n            \"last_name\": \"Doe\",\n            \"middle_name\": \"\",\n            \"middle_name_exists\": false,\n            \"email\": \"john.doe@vetty.co\",\n            \"status\": \"applicant_created\",\n            \"updated_date\": \"2023-05-11 10:22:59\",\n            \"historical\": false\n        }\n    ],\n    \"last\": true,\n    \"total_elements\" : 1,\n    \"total_pages\" : 1\n}"},{"id":"75f6e46c-1ad5-4b43-92ec-5f6fe56fed89","name":"Get all applicants with historical applicants","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"url":{"raw":"{{host}}/cfapi/v1/applicants?page=0&size=100&historical=true","host":["{{host}}"],"path":["cfapi","v1","applicants"],"query":[{"key":"page","value":"0","description":"Zero based index"},{"key":"size","value":"100","description":"The page size to be returned"},{"key":"historical","value":"true"}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"content\" : [\n        {\n            \"id\": \"93b5e486-32ab-4f32-8bbd-c713c44770a1\",\n            \"first_name\": \"John\",\n            \"last_name\": \"Doe\",\n            \"middle_name\": \"\",\n            \"middle_name_exists\": false,\n            \"email\": \"john.doe@vetty.co\",\n            \"status\": \"applicant_created\",\n            \"updated_date\": \"2023-05-11 10:22:59\",\n            \"historical\": true\n        },\n        {\n            \"id\": \"93b5e486-32ab-4f32-8bbd-c713c4477h2f\",\n            \"first_name\": \"Max\",\n            \"last_name\": \"Fried\",\n            \"middle_name\": \"\",\n            \"middle_name_exists\": false,\n            \"email\": \"max.fried@vetty.co\",\n            \"status\": \"clear\",\n            \"updated_date\": \"2025-03-17 03:27:12\",\n            \"historical\": false\n        }\n    ],\n    \"last\": true,\n    \"total_elements\" : 2,\n    \"total_pages\" : 1\n}"},{"id":"7d562223-34cf-43ba-9b78-e08bb8cdc47d","name":"Create a all applicants - Bad Request","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"url":"{{host}}/cfapi/v1/applicants"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"error message\"\n}"}],"_postman_id":"fa14be94-d19e-4003-adf2-96d763e670f8"},{"name":"Update an existing applicant","id":"90347c73-bd8e-4344-b86a-e1573c62fb47","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Authorization","value":"Bearer {{access_token}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"first_name\": \"John\",\n    \"last_name\": \"Doe\",\n    \"middle_name\": \"\",\n    \"middle_name_exists\": false,\n    \"email\": \"john.doe@vetty.co\",\n    \"dob\": \"1993-01-05\",\n    \"ssn\": \"1231111234\",\n    \"phone\": \"4411111111\",\n    \"external_id\": \"123111123124\",\n    \"expected_annual_salary\": 10000,\n    \"address\": {\n        \"street\": \"123 Main St\",\n        \"city\": \"New York\",\n        \"state\": \"NY\",\n        \"county\": \"New York\",\n        \"zipcode\": \"10011\",\n        \"country\": \"USA\"\n    },\n    \"previous_address\": [\n        {\n            \"address_id\": 1,\n            \"city\": \"Schenectady\",\n            \"from_month\": \"12\",\n            \"from_year\": \"2007\",\n            \"state\": \"NY\",\n            \"street\": \"Eastern Subway\",\n            \"street2\": \"\",\n            \"to_month\": \"10\",\n            \"to_year\": \"2011\",\n            \"zipcode\": \"12345\"\n        }\n    ],\n    \"former_name\": true,\n    \"former_details\": [\n        {\n            \"former_id\": 1,\n            \"first_name\": \"John\",\n            \"last_name\": \"Doey\",\n            \"from_month\": \"01\",\n            \"from_year\": \"2005\",\n            \"checkmiddlename\": false,\n            \"middle_name\": \"\",\n            \"to_month\": \"02\",\n            \"to_year\": \"2017\"\n        }\n    ],\n    \"driver_license\": {\n        \"number\": \"1112223333\",\n        \"state\": \"NY\"\n    },\n    \"additional_driver_licenses\": [\n        {\n            \"number\": \"1112223334\",\n            \"state\": \"NY\",\n            \"start_date\": \"2017-01-01\",\n            \"end_date\": \"2019-12-31\"\n        }\n    ],\n    \"education_history\": [{\n        \"school_name\": \"NY degree colage\",\n        \"degree\": {\n            \"major\":\"Software Systems\",\n            \"degree_name\":\"Bachelors\",\n            \"degree_type\":\"Masters\",\n            \"graduation_date\":\"2010-06-01\",\n            \"degree_completed\":true\n        },\n        \"address\": {\n            \"street\": \"123 Main St\",\n            \"city\": \"New York\",\n            \"state\": \"NY\",\n            \"county\": \"New York\",\n            \"zipcode\": \"10011\",\n            \"country\": \"USA\"\n        },\n        \"first_name\": \"John\",\n        \"last_name\": \"Doe\",\n        \"middle_name\": \"\",\n        \"start_date\": \"2008-02-14\",\n        \"end_date\": \"2011-08-11\",\n        \"gpa\": \"4.0\",\n        \"supporting_document_ids\": [\"e3f2a6b6-6806-4ba4-aceb-443f8b754fac\", \"d4dgwhfs-4321-4ba4-aceb-443ijw354fad\"]\n    }],\n    \"employment_history\": [\n        {\n            \"name_of_employer\": \"Vetty\",\n            \"job_title\": \"Software Developer\",\n            \"start_date\": \"2017-01-01\",\n            \"end_date\": \"2019-12-31\",\n            \"address\": {\n                \"street\": \"123 Main St\",\n                \"city\": \"New York\",\n                \"state\": \"NY\",\n                \"county\": \"New York\",\n                \"zipcode\": \"10011\",\n                \"country\": \"USA\"\n            },\n            \"fax\": \"1234324\",\n            \"current_employer\": true,\n            \"self_employed\": false,\n            \"permission_to_contact\": true\n        }\n    ],\n    \"licenses\": [\n        {\n            \"type\": \"license type\",\n            \"number\": \"1341342134231\",\n            \"expiration_date\": \"2020-01-01\",\n            \"certifying_body\": \"certifying body name\",\n            \"supporting_document_ids\": [\"e3f2a6b6-6806-4ba4-aceb-443f8b754fac\", \"d4dgwhfs-4321-4ba4-aceb-443ijw354fad\"]\n        }\n    ],\n    \"references\": [\n        {\n            \"name\": \"Prince\",\n            \"phone\": \"4411111111\",\n            \"alternate_phone\": \"4411111111\",\n            \"email\": \"harmeet+10.hybrid.client@vetty.co\",\n            \"relationship\": \"Manager\",\n            \"other_relationship\": \"\",            \n            \"address\": {\n                \"street\": \"123 Main St\",\n                \"city\": \"New York\",\n                \"state\": \"NY\",\n                \"zipcode\": \"10011\"\n            }\n        }\n    ],\n    \"i9form_details\": {\n        \"verification\": {\n            \"verification_mode\": \"employee_authorized_representative\",\n            \"repr_email\": \"john.doe@vetty.co\",\n            \"repr_phone\": \"4411111111\"\n        }\n    },\n    \"healthcare_license\": [\n        {\n            \"license_code\": \"acupuncturist_license\",\n            \"candidate_name\": \"John doey\",\n            \"certifying_body\": \"vetty verify\",\n            \"license_number\": \"DQ128h8WD\",\n            \"issued_state\": \"CA\",\n            \"license_issued_date\": \"mm-yyyy\",\n            \"license_issued_expiry\": \"mm-yyyy\",\n            \"supporting_document_ids\": [\n                \"e3f2a6b6-6806-4ba4-aceb-443f8b754fac\"\n            ]\n        }\n    ],\n    \"expected_empstartdate\": \"2023-06-20\",\n    \"send_sms\" : true,\n    \"cost_center_id\" : \"b4f23666-6805-4fa4-nceb-443f8b754gde\",\n    \"department\": \"6759059bd90cf07c450965ea\"\n}"},"url":"{{host}}/cfapi/v1/applicants/{applicant_id}","description":"<p>Creates a new applicant</p>\n","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"8f1a1d6b-81bf-48cc-a19f-f12fa57cc73d","id":"8f1a1d6b-81bf-48cc-a19f-f12fa57cc73d","name":"Vetty API","type":"collection"}},"urlObject":{"path":["cfapi","v1","applicants","{applicant_id}"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"603b3676-3677-4270-b4ca-7655ad2fb358","name":"Update an existing applicant","originalRequest":{"method":"PATCH","header":[{"key":"Authorization","value":"Bearer {{access_token}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"first_name\": \"John\",\n    \"last_name\": \"Doe\",\n    \"middle_name\": \"\",\n    \"middle_name_exists\": false,\n    \"email\": \"john.doe@vetty.co\",\n    \"dob\": \"1993-01-05\",\n    \"ssn\": \"1231111234\",\n    \"phone\": \"(441) 111-1111\",\n    \"external_id\": \"123111123124\",\n    \"expected_annual_salary\": 10000,\n    \"address\": {\n        \"street\": \"123 Main St\",\n        \"city\": \"New York\",\n        \"state\": \"NY\",\n        \"county\": \"New York\",\n        \"zipcode\": \"10011\",\n        \"country\": \"USA\"\n    },\n    \"previous_address\": [\n        {\n            \"address_id\": 1,\n            \"city\": \"Schenectady\",\n            \"from_month\": \"12\",\n            \"from_year\": \"2007\",\n            \"state\": \"NY\",\n            \"street\": \"Eastern Subway\",\n            \"street2\": \"\",\n            \"to_month\": \"10\",\n            \"to_year\": \"2011\",\n            \"zipcode\": \"12345\"\n        }\n    ],\n    \"former_name\": true,\n    \"former_details\": [\n        {\n            \"former_id\": 1,\n            \"first_name\": \"John\",\n            \"last_name\": \"Doey\",\n            \"from_month\": \"01\",\n            \"from_year\": \"2005\",\n            \"checkmiddlename\": false,\n            \"middle_name\": \"\",\n            \"to_month\": \"02\",\n            \"to_year\": \"2017\"\n        }\n    ],\n    \"expected_empstartdate\": \"2023-06-20\",\n    \"send_sms\": true,\n    \"cost_center_id\": \"b4f23666-6805-4fa4-nceb-443f8b754gde\",\n    \"department\": \"6759059bd90cf07c450965ea\",\n    \"driver_license\": {\n        \"number\": \"111-222-3333\",\n        \"state\": \"NY\"\n    },\n    \"additional_driver_licenses\": [\n        {\n            \"number\": \"111-222-3334\",\n            \"state\": \"NY\",\n            \"start_date\": \"2017-01-01\",\n            \"end_date\": \"2019-12-31\"\n        }\n    ],\n    \"education_history\": [\n        {\n            \"school_name\": \"NY degree colage\",\n            \"degree\": {\n                \"major\": \"Software Systems\",\n                \"degree_name\": \"Bachelors\",\n                \"degree_type\": \"Masters\",\n                \"graduation_date\": \"2010-06-01\",\n                \"degree_completed\": true\n            },\n            \"address\": {\n                \"street\": \"123 Main St\",\n                \"city\": \"New York\",\n                \"state\": \"NY\",\n                \"county\": \"New York\",\n                \"zipcode\": \"10011\",\n                \"country\": \"USA\"\n            },\n            \"first_name\": \"John\",\n            \"last_name\": \"Doe\",\n            \"middle_name\": \"\",\n            \"start_date\": \"2008-02-14\",\n            \"end_date\": \"2011-08-11\",\n            \"gpa\": \"4.0\",\n            \"supporting_document_ids\": [\n                \"e3f2a6b6-6806-4ba4-aceb-443f8b754fac\",\n                \"d4dgwhfs-4321-4ba4-aceb-443ijw354fad\"\n            ]\n        }\n    ],\n    \"employment_history\": [\n        {\n            \"name_of_employer\": \"Vetty\",\n            \"job_title\": \"Software Developer\",\n            \"start_date\": \"2017-01-01\",\n            \"end_date\": \"2019-12-31\",\n            \"address\": {\n                \"street\": \"123 Main St\",\n                \"city\": \"New York\",\n                \"state\": \"NY\",\n                \"county\": \"New York\",\n                \"zipcode\": \"10011\",\n                \"country\": \"USA\"\n            },\n            \"fax\": \"1234324\",\n            \"current_employer\": true,\n            \"self_employed\": false,\n            \"permission_to_contact\": true\n        }\n    ],\n    \"licenses\": [\n        {\n            \"type\": \"license type\",\n            \"number\": \"1341342134231\",\n            \"expiration_date\": \"2020-01-01\",\n            \"certifying_body\": \"certifying body name\",\n            \"supporting_document_ids\": [\n                \"e3f2a6b6-6806-4ba4-aceb-443f8b754fac\",\n                \"d4dgwhfs-4321-4ba4-aceb-443ijw354fad\"\n            ]\n        }\n    ],\n    \"references\": [\n        {\n            \"name\": \"Prince\",\n            \"phone\": \"4411111111\",\n            \"alternate_phone\": \"4411111111\",\n            \"email\": \"harmeet+10.hybrid.client@vetty.co\",\n            \"relationship\": \"Manager\",\n            \"otherRelationship\": \"\",\n            \"address\": {\n                \"street\": \"123 Main St\",\n                \"city\": \"New York\",\n                \"state\": \"NY\",\n                \"zipcode\": \"10011\"\n            }\n        }\n    ],\n    \"i9form_details\": {\n        \"verification\": {\n            \"verification_mode\": \"employee_authorized_representative\",\n            \"repr_email\": \"john.doe@vetty.co\",\n            \"repr_phone\": \"4411111111\"\n        }\n    },\n    \"healthcare_license\": [\n        {\n            \"license_code\": \"acupuncturist_license\",\n            \"candidate_name\": \"John doey\",\n            \"certifying_body\": \"vetty verify\",\n            \"license_number\": \"DQ128h8WD\",\n            \"issued_state\": \"CA\",\n            \"license_issued_date\": \"mm-yyyy\",\n            \"license_issued_expiry\": \"mm-yyyy\",\n            \"supporting_document_ids\": [\n                \"e3f2a6b6-6806-4ba4-aceb-443f8b754fac\"\n            ]\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/cfapi/v1/applicants/{applicant_id}"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"93b5e486-32ab-4f32-8bbd-c713c44770a1\",\n    \"first_name\": \"John\",\n    \"last_name\": \"Doe\",\n    \"middle_name\": \"\",\n    \"middle_name_exists\": false,\n    \"email\": \"john.doe@vetty.co\",\n    \"dob\": \"1993-01-05\",\n    \"ssn\": \"1231111234\",\n    \"phone\": \"(441) 111-1111\",\n    \"external_id\": \"123111123124\",\n    \"expected_annual_salary\": 10000,\n    \"expected_empstartdate\": \"2023-06-20\",\n    \"send_sms\" : true,\n    \"cost_center_id\": \"b4f23666-6805-4fa4-nceb-443f8b754gde\",\n    \"department\": \"6759059bd90cf07c450965ea\",\n    \"address\": {\n        \"street\": \"123 Main St\",\n        \"city\": \"New York\",\n        \"state\": \"NY\",\n        \"county\": \"New York\",\n        \"zipcode\": \"10011\",\n        \"country\": \"USA\"\n    },\n    \"previous_address\": [\n        {\n            \"address_id\": 1,\n            \"city\": \"Schenectady\",\n            \"from_month\": \"12\",\n            \"from_year\": \"2007\",\n            \"state\": \"NY\",\n            \"street\": \"Eastern Subway\",\n            \"street2\": \"\",\n            \"to_month\": \"10\",\n            \"to_year\": \"2011\",\n            \"zipcode\": \"12345\"\n        }\n    ],\n    \"former_name\": true,\n    \"former_details\": [\n        {\n            \"former_id\": 1,\n            \"first_name\": \"John\",\n            \"last_name\": \"Doey\",\n            \"from_month\": \"01\",\n            \"from_year\": \"2005\",\n            \"checkmiddlename\": false,\n            \"middle_name\": \"\",\n            \"to_month\": \"02\",\n            \"to_year\": \"2017\"\n        }\n    ],\n    \"expected_empstartdate\": \"2023-06-20\",\n    \"send_sms\": true,\n    \"cost_center_id\": \"b4f23666-6805-4fa4-nceb-443f8b754gde\",\n    \"driver_license\": {\n        \"number\": \"111-222-3333\",\n        \"state\": \"NY\"\n    },\n    \"additional_driver_licenses\": [\n        {\n            \"id\": \"93b5e486-32ab-4f32-8bbd-c713c44770b1\",\n            \"number\": \"111-222-3334\",\n            \"state\": \"NY\",\n            \"start_date\": \"2017-01-01\",\n            \"end_date\": \"2019-12-31\"\n        }\n    ],\n    \"education_history\": [{\n        \"id\": \"93b5e486-32ab-4f32-8bbd-c713c44770c1\",\n        \"school_name\": \"NY degree colage\",\n        \"degree\": {\n            \"major\":\"Software Systems\",\n            \"degree_name\":\"Bachelors\",\n            \"degree_type\":\"Masters\",\n            \"graduation_date\":\"2010-06-01\",\n            \"degree_completed\":true\n        },\n        \"address\": {\n            \"street\": \"123 Main St\",\n            \"city\": \"New York\",\n            \"state\": \"NY\",\n            \"county\": \"New York\",\n            \"zipcode\": \"10011\",\n            \"country\": \"USA\"\n        },\n        \"first_name\": \"John\",\n        \"last_name\": \"Doe\",\n        \"middle_name\": \"\",\n        \"start_date\": \"2008-02-14\",\n        \"end_date\": \"2011-08-11\",\n        \"gpa\": \"4.0\",\n        \"supporting_document_ids\": [\"e3f2a6b6-6806-4ba4-aceb-443f8b754fac\", \"d4dgwhfs-4321-4ba4-aceb-443ijw354fad\"]\n    }],\n    \"employment_history\": [\n        {\n            \"id\": \"93b5e486-32ab-4f32-8bbd-c713c44770d1\",\n            \"name_of_employer\": \"Vetty\",\n            \"job_title\": \"Software Developer\",\n            \"start_date\": \"2017-01-01\",\n            \"end_date\": \"2019-12-31\",\n            \"address\": {\n                \"street\": \"123 Main St\",\n                \"city\": \"New York\",\n                \"state\": \"NY\",\n                \"county\": \"New York\",\n                \"zipcode\": \"10011\",\n                \"country\": \"USA\"\n            },\n            \"fax\": \"1234324\",\n            \"current_employer\": true,\n            \"self_employed\": false,\n            \"permission_to_contact\": true\n        }\n    ],\n    \"licenses\": [\n        {\n            \"id\": \"93b5e486-32ab-4f32-8bbd-c713c44770e1\",\n            \"type\": \"license type\",\n            \"number\": \"1341342134231\",\n            \"expiration_date\": \"2020-01-01\",\n            \"certifying_body\": \"certifying body name\",\n            \"supporting_document_ids\": [\"e3f2a6b6-6806-4ba4-aceb-443f8b754fac\", \"d4dgwhfs-4321-4ba4-aceb-443ijw354fad\"]\n        }\n    ],\n    \"references\": [\n        {\n            \"name\": \"Prince\",\n            \"phone\": \"4411111111\",\n            \"alternate_phone\": \"4411111111\",\n            \"email\": \"harmeet+10.hybrid.client@vetty.co\",\n            \"relationship\": \"Manager\",\n            \"otherRelationship\": \"\",            \n            \"address\": {\n                \"street\": \"123 Main St\",\n                \"city\": \"New York\",\n                \"state\": \"NY\",\n                \"zipcode\": \"10011\"\n            }\n        }\n    ],\n    \"i9form_details\": {\n        \"verification\": {\n            \"verification_mode\": \"employee_authorized_representative\",\n            \"repr_email\": \"john.doe@vetty.co\",\n            \"repr_phone\": \"4411111111\"\n        }\n    },\n    \"healthcare_license\": [\n        {\n            \"license_code\": \"acupuncturist_license\",\n            \"candidate_name\": \"John doey\",\n            \"certifying_body\": \"vetty verify\",\n            \"license_number\": \"DQ128h8WD\",\n            \"issued_state\": \"CA\",\n            \"license_issued_date\": \"mm-yyyy\",\n            \"license_issued_expiry\": \"mm-yyyy\",\n            \"supporting_document_ids\": [\n                \"e3f2a6b6-6806-4ba4-aceb-443f8b754fac\"\n            ]\n        }\n    ]\n}"}],"_postman_id":"90347c73-bd8e-4344-b86a-e1573c62fb47"},{"name":"Retrieve an existing applicant","id":"c2d45ac5-6b61-49d5-8202-241834eb7a66","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"url":"{{host}}/cfapi/v1/applicants/{applicant_id}","description":"<p>Retrieve an existing applicant.<br />[Note: This will not retrive an historical data. Support for historical data will be added soon]</p>\n<p>[Note2: <strong>updated_date</strong> timestamp only changed on major applicant events and is not changed in other cases]</p>\n","urlObject":{"path":["cfapi","v1","applicants","{applicant_id}"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"7283bc47-95a3-4fc7-b7b5-2f14a72520dd","name":"Retrieve an existing applicant","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"url":{"raw":"{{host}}/cfapi/v1/applicants/{applicant_id}","host":["{{host}}"],"path":["cfapi","v1","applicants","{applicant_id}"],"query":[{"key":"","value":null,"type":"text","disabled":true}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"93b5e486-32ab-4f32-8bbd-c713c44770a1\",\n    \"first_name\": \"John\",\n    \"last_name\": \"Doe\",\n    \"middle_name\": \"\",\n    \"middle_name_exists\": false,\n    \"email\": \"john.doe@vetty.co\",\n    \"dob\": \"1993-01-05\",\n    \"phone\": \"(441) 111-1111\",\n    \"status\": \"applicant_created\",\n    \"updated_date\": \"2023-05-11 10:22:59\",\n    \"address\": {\n        \"street\": \"123 Main St\",\n        \"zipcode\": \"10011\"\n    },\n    \"driver_license\": {\n        \"number\": \"111-222-3333\",\n        \"state\": \"NY\"\n    }\n}"},{"id":"40af23b3-c5a4-430b-9a43-2037a54e63d4","name":"Retrieve an existing historical applicant","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"url":{"raw":"{{host}}/cfapi/v1/applicants/{applicant_id}?historical=true","host":["{{host}}"],"path":["cfapi","v1","applicants","{applicant_id}"],"query":[{"key":"historical","value":"true"},{"key":"","value":null,"type":"text","disabled":true}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"93b5e486-32ab-4f32-8bbd-c713c44770a1\",\n    \"first_name\": \"John\",\n    \"last_name\": \"Doe\",\n    \"middle_name\": \"\",\n    \"middle_name_exists\": false,\n    \"email\": \"john.doe@vetty.co\",\n    \"dob\": \"1993-01-05\",\n    \"phone\": \"(441) 111-1111\",\n    \"status\": \"applicant_created\",\n    \"updated_date\": \"2023-05-11 10:22:59\",\n    \"address\": {\n        \"street\": \"123 Main St\",\n        \"zipcode\": \"10011\"\n    },\n    \"driver_license\": {\n        \"number\": \"111-222-3333\",\n        \"state\": \"NY\"\n    }\n}"},{"id":"9802dc0e-dc6f-41e6-9902-f82ce44534b5","name":"Retrieve an existing applicant - Health Screening Scheduling Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"url":{"raw":"{{host}}/cfapi/v1/applicants/{applicant_id}","host":["{{host}}"],"path":["cfapi","v1","applicants","{applicant_id}"],"query":[{"key":"","value":null,"type":"text","disabled":true}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"93b5e486-32ab-4f32-8bbd-c713c44770a1\",\n    \"first_name\": \"John\",\n    \"last_name\": \"Doe\",\n    \"middle_name\": \"\",\n    \"middle_name_exists\": false,\n    \"email\": \"john.doe@vetty.co\",\n    \"dob\": \"1993-01-05\",\n    \"phone\": \"(441) 111-1111\",\n    \"status\": \"applicant_created\",\n    \"updated_date\": \"2023-05-11 10:22:59\",\n    \"address\": {\n        \"street\": \"123 Main St\",\n        \"zipcode\": \"10011\"\n    },\n    \"driver_license\": {\n        \"number\": \"111-222-3333\",\n        \"state\": \"NY\"\n    },\n    \"scheduling_details\": [\n        {\n            \"checks\": [\n                \"10 Panel Drug\",\n                \"MMR Titer\",\n                \"Hepatitis B Surface AntiBody, Quantitative\",\n                \"Varicella Titer\"\n            ],\n            \"name\": \"AFC Urgent Care - Torrance\",\n            \"address\": \"24329 Crenshaw Blvd Ste A\",\n            \"city\": \"Torrance\",\n            \"state\": \"CA\",\n            \"country\": \"\",\n            \"zip\": \"90505-5335\",\n            \"phone\": \"3108688100\",\n            \"mon\": \"08:00 - 16:30\",\n            \"tue\": \"08:00 - 16:30\",\n            \"wed\": \"08:00 - 16:30\",\n            \"thu\": \"08:00 - 16:30\",\n            \"fri\": \"08:00 - 16:30\",\n            \"sat\": \"Closed\",\n            \"sun\": \"Closed\",\n            \"expiry_date\": \"Tuesday, May 16, 2023\",\n            \"message\": \"\",\n            \"donor_pass_uri\": \"https://stgapi.vetty.co/cfapi/v1/return_file?file_id=645ccb480349b9a3eba92091\"\n        }\n    ]\n}"},{"id":"ab6740a4-bd0c-45f7-bad8-7fbf04926fd2","name":"Retrieve an existing applicant - Health Screening Scheduling Failed","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"url":{"raw":"{{host}}/cfapi/v1/applicants/{applicant_id}","host":["{{host}}"],"path":["cfapi","v1","applicants","{applicant_id}"],"query":[{"key":"","value":null,"type":"text","disabled":true}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"93b5e486-32ab-4f32-8bbd-c713c44770a1\",\n    \"first_name\": \"John\",\n    \"last_name\": \"Doe\",\n    \"middle_name\": \"\",\n    \"middle_name_exists\": false,\n    \"email\": \"john.doe@vetty.co\",\n    \"dob\": \"1993-01-05\",\n    \"phone\": \"(441) 111-1111\",\n    \"status\": \"applicant_created\",\n    \"updated_date\": \"2023-05-11 10:22:59\",\n    \"address\": {\n        \"street\": \"123 Main St\",\n        \"zipcode\": \"10011\"\n    },\n    \"driver_license\": {\n        \"number\": \"111-222-3333\",\n        \"state\": \"NY\"\n    },\n    \"scheduling_details\": [\n        {\n            \"checks\": [\n                \"10 Panel Drug\",\n                \"MMR Titer\",\n                \"Hepatitis B Surface AntiBody, Quantitative\",\n                \"Varicella Titer\"\n            ],\n            \"message\": \"Please Reschedule to try again\"\n        },\n        {\n            \"checks\": [\n                \"MMR Vaccine\"\n            ],\n            \"message\": \"Please Reschedule to try again\"\n        }\n    ]\n}"},{"id":"f201ffc3-1839-49e9-9b1a-976965f204e9","name":"Retrieve an existing applicant - Health Screening Scheduling Expired","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"url":{"raw":"{{host}}/cfapi/v1/applicants/{applicant_id}","host":["{{host}}"],"path":["cfapi","v1","applicants","{applicant_id}"],"query":[{"key":"","value":null,"type":"text","disabled":true}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"93b5e486-32ab-4f32-8bbd-c713c44770a1\",\n    \"first_name\": \"John\",\n    \"last_name\": \"Doe\",\n    \"middle_name\": \"\",\n    \"middle_name_exists\": false,\n    \"email\": \"john.doe@vetty.co\",\n    \"dob\": \"1993-01-05\",\n    \"phone\": \"(441) 111-1111\",\n    \"status\": \"applicant_created\",\n    \"updated_date\": \"2023-05-11 10:22:59\",\n    \"address\": {\n        \"street\": \"123 Main St\",\n        \"zipcode\": \"10011\"\n    },\n    \"driver_license\": {\n        \"number\": \"111-222-3333\",\n        \"state\": \"NY\"\n    },\n    \"scheduling_details\": [\n        {\n            \"checks\": [\n                \"10 Panel Drug\",\n                \"MMR Titer\",\n                \"Hepatitis B Surface AntiBody, Quantitative\",\n                \"Varicella Titer\"\n            ],\n            \"message\": \"This health screening is expired on Tuesday, May 16, 2023\"\n        },\n        {\n            \"checks\": [\n                \"Mask Fit\"\n            ],\n            \"message\": \"This health screening is expired on Tuesday, May 16, 2023\"\n        }\n    ]\n}"}],"_postman_id":"c2d45ac5-6b61-49d5-8202-241834eb7a66"},{"name":"Create full applicant","id":"4ba4e602-259e-4d8f-9692-eb2b5183228b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{access_token}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"first_name\": \"John\",\n    \"last_name\": \"Doe\",\n    \"middle_name\": \"\",\n    \"middle_name_exists\": false,\n    \"email\": \"john.doe@vetty.co\",\n    \"dob\": \"1993-01-05\",\n    \"ssn\": \"1231111234\",\n    \"phone\": \"4411111111\",\n    \"external_id\": \"123111123124\",\n    \"address\": {\n        \"street\": \"123 Main St\",\n        \"city\": \"New York\",\n        \"state\": \"NY\",\n        \"county\": \"New York\",\n        \"zipcode\": \"10011\",\n        \"country\": \"USA\"\n    },\n    \"previous_address\": [\n        {\n            \"address_id\": 1,\n            \"city\": \"Schenectady\",\n            \"from_month\": \"12\",\n            \"from_year\": \"2007\",\n            \"state\": \"NY\",\n            \"street\": \"Eastern Subway\",\n            \"street2\": \"\",\n            \"to_month\": \"10\",\n            \"to_year\": \"2011\",\n            \"zipcode\": \"12345\"\n        }\n    ],\n    \"former_name\": true,\n    \"former_details\": [\n        {\n            \"former_id\": 1,\n            \"first_name\": \"John\",\n            \"last_name\": \"Doey\",\n            \"from_month\": \"01\",\n            \"from_year\": \"2005\",\n            \"checkmiddlename\": false,\n            \"middle_name\": \"\",\n            \"to_month\": \"02\",\n            \"to_year\": \"2017\"\n        }\n    ],\n    \"driver_license\": {\n        \"number\": \"1112223333\",\n        \"state\": \"NY\"\n    },\n    \"additional_driver_licenses\": [\n        {\n            \"number\": \"1112223334\",\n            \"state\": \"NY\",\n            \"start_date\": \"2017-01-01\",\n            \"end_date\": \"2019-12-31\"\n        }\n    ],\n    \"education_history\": [\n        {\n            \"school_name\": \"NY degree colage\",\n            \"degree\": {\n                \"major\": \"Software Systems\",\n                \"degree_name\": \"Bachelors\",\n                \"degree_type\": \"Masters\",\n                \"graduation_date\": \"2010-06-01\",\n                \"degree_completed\": true\n            },\n            \"address\": {\n                \"street\": \"123 Main St\",\n                \"city\": \"New York\",\n                \"state\": \"NY\",\n                \"county\": \"New York\",\n                \"zipcode\": \"10011\",\n                \"country\": \"USA\"\n            },\n            \"first_name\": \"John\",\n            \"last_name\": \"Doe\",\n            \"middle_name\": \"\",\n            \"start_date\": \"2008-02-14\",\n            \"end_date\": \"2011-08-11\",\n            \"gpa\": \"4.0\",\n            \"supporting_document_ids\": [\n                \"e3f2a6b6-6806-4ba4-aceb-443f8b754fac\",\n                \"d4dgwhfs-4321-4ba4-aceb-443ijw354fad\"\n            ]\n        }\n    ],\n    \"employment_history\": [\n        {\n            \"name_of_employer\": \"Vetty\",\n            \"job_title\": \"Software Developer\",\n            \"start_date\": \"2017-01-01\",\n            \"end_date\": \"2019-12-31\",\n            \"address\": {\n                \"street\": \"123 Main St\",\n                \"city\": \"New York\",\n                \"state\": \"NY\",\n                \"county\": \"New York\",\n                \"zipcode\": \"10011\",\n                \"country\": \"USA\"\n            },\n            \"fax\": \"1234324\",\n            \"current_employer\": true,\n            \"self_employed\": false,\n            \"permission_to_contact\": true\n        }\n    ],\n    \"licenses\": [\n        {\n            \"type\": \"license type\",\n            \"number\": \"1341342134231\",\n            \"expiration_date\": \"2020-01-01\",\n            \"certifying_body\": \"certifying body name\",\n            \"supporting_document_ids\": [\n                \"e3f2a6b6-6806-4ba4-aceb-443f8b754fac\",\n                \"d4dgwhfs-4321-4ba4-aceb-443ijw354fad\"\n            ]\n        }\n    ],\n    \"references\": [\n        {\n            \"name\": \"Prince\",\n            \"phone\": \"4411111111\",\n            \"alternate_phone\": \"4411111111\",\n            \"email\": \"john.doe@vetty.co\",\n            \"relationship\": \"Manager\",\n            \"other_relationship\": \"\",\n            \"address\": {\n                \"street\": \"123 Main St\",\n                \"city\": \"New York\",\n                \"state\": \"NY\",\n                \"zipcode\": \"10011\"\n            }\n        }\n    ],\n    \"i9form_details\": {\n        \"verification\": {\n            \"verification_mode\": \"employee_authorized_representative\",\n            \"repr_email\": \"john.doe@vetty.co\",\n            \"repr_phone\": \"4411111111\"\n        }\n    },\n    \"healthcare_license\": [\n        {\n            \"license_code\": \"acupuncturist_license\",\n            \"candidate_name\": \"John doey\",\n            \"certifying_body\": \"vetty verify\",\n            \"license_number\": \"DQ128h8WD\",\n            \"issued_state\": \"CA\",\n            \"license_issued_date\": \"mm-yyyy\",\n            \"license_issued_expiry\": \"mm-yyyy\",\n            \"supporting_document_ids\": [\n                \"e3f2a6b6-6806-4ba4-aceb-443f8b754fac\"\n            ]\n        }\n    ],\n    \"expected_empstartdate\": \"2023-06-20\",\n    \"send_sms\" : true,\n    \"cost_center_id\": \"b4f23666-6805-4fa4-nceb-443f8b754gde\",\n    \"department\": \"6759059bd90cf07c450965ea\"\n}"},"url":"{{host}}/cfapi/v1/applicants","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"8f1a1d6b-81bf-48cc-a19f-f12fa57cc73d","id":"8f1a1d6b-81bf-48cc-a19f-f12fa57cc73d","name":"Vetty API","type":"collection"}},"urlObject":{"path":["cfapi","v1","applicants"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"ef518578-7d02-401b-841c-40d6a53ba2bf","name":"Create full applicant","originalRequest":{"method":"PATCH","header":[{"key":"Authorization","value":"Bearer {{access_token}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"first_name\": \"John\",\n    \"last_name\": \"Doe\",\n    \"middle_name\": \"\",\n    \"middle_name_exists\": false,\n    \"email\": \"john.doe@vetty.co\",\n    \"dob\": \"1993-01-05\",\n    \"ssn\": \"1231111234\",\n    \"phone\": \"(441) 111-1111\",\n    \"external_id\": \"123111123124\",\n    \"address\": {\n        \"street\": \"123 Main St\",\n        \"city\": \"New York\",\n        \"state\": \"NY\",\n        \"county\": \"New York\",\n        \"zipcode\": \"10011\",\n        \"country\": \"USA\"\n    },\n    \"previous_address\": [\n        {\n            \"address_id\": 1,\n            \"city\": \"Schenectady\",\n            \"from_month\": \"12\",\n            \"from_year\": \"2007\",\n            \"state\": \"NY\",\n            \"street\": \"Eastern Subway\",\n            \"street2\": \"\",\n            \"to_month\": \"10\",\n            \"to_year\": \"2011\",\n            \"zipcode\": \"12345\"\n        }\n    ],\n    \"former_name\": true,\n    \"expected_empstartdate\": \"2023-06-20\",\n    \"send_sms\": true,\n    \"cost_center_id\": \"b4f23666-6805-4fa4-nceb-443f8b754gde\",\n    \"department\": \"6759059bd90cf07c450965ea\",\n    \"former_details\": [\n        {\n            \"former_id\": 1,\n            \"first_name\": \"John\",\n            \"last_name\": \"Doey\",\n            \"from_month\": \"01\",\n            \"from_year\": \"2005\",\n            \"checkmiddlename\": false,\n            \"middle_name\": \"\",\n            \"to_month\": \"02\",\n            \"to_year\": \"2017\"\n        }\n    ],\n    \"driver_license\": {\n        \"number\": \"111-222-3333\",\n        \"state\": \"NY\"\n    },\n    \"additional_driver_licenses\": [\n        {\n            \"number\": \"111-222-3334\",\n            \"state\": \"NY\",\n            \"start_date\": \"2017-01-01\",\n            \"end_date\": \"2019-12-31\"\n        }\n    ],\n    \"education_history\": [\n        {\n            \"school_name\": \"NY degree colage\",\n            \"degree\": {\n                \"major\": \"Software Systems\",\n                \"degree_name\": \"Bachelors\",\n                \"degree_type\": \"Masters\",\n                \"graduation_date\": \"2010-06-01\",\n                \"degree_completed\": true\n            },\n            \"address\": {\n                \"street\": \"123 Main St\",\n                \"city\": \"New York\",\n                \"state\": \"NY\",\n                \"county\": \"New York\",\n                \"zipcode\": \"10011\",\n                \"country\": \"USA\"\n            },\n            \"first_name\": \"John\",\n            \"last_name\": \"Doe\",\n            \"middle_name\": \"\",\n            \"start_date\": \"2008-02-14\",\n            \"end_date\": \"2011-08-11\",\n            \"gpa\": \"4.0\",\n            \"supporting_document_ids\": [\n                \"e3f2a6b6-6806-4ba4-aceb-443f8b754fac\",\n                \"d4dgwhfs-4321-4ba4-aceb-443ijw354fad\"\n            ]\n        }\n    ],\n    \"employment_history\": [\n        {\n            \"name_of_employer\": \"Vetty\",\n            \"job_title\": \"Software Developer\",\n            \"start_date\": \"2017-01-01\",\n            \"end_date\": \"2019-12-31\",\n            \"address\": {\n                \"street\": \"123 Main St\",\n                \"city\": \"New York\",\n                \"state\": \"NY\",\n                \"county\": \"New York\",\n                \"zipcode\": \"10011\",\n                \"country\": \"USA\"\n            },\n            \"fax\": \"1234324\",\n            \"current_employer\": true,\n            \"self_employed\": false,\n            \"permission_to_contact\": true\n        }\n    ],\n    \"licenses\": [\n        {\n            \"type\": \"license type\",\n            \"number\": \"1341342134231\",\n            \"expiration_date\": \"2020-01-01\",\n            \"certifying_body\": \"certifying body name\",\n            \"supporting_document_ids\": [\n                \"e3f2a6b6-6806-4ba4-aceb-443f8b754fac\",\n                \"d4dgwhfs-4321-4ba4-aceb-443ijw354fad\"\n            ]\n        }\n    ],\n    \"references\": [\n        {\n            \"name\": \"Prince\",\n            \"phone\": \"4411111111\",\n            \"alternate_phone\": \"4411111111\",\n            \"email\": \"harmeet+10.hybrid.client@vetty.co\",\n            \"relationship\": \"Manager\",\n            \"otherRelationship\": \"\",\n            \"address\": {\n                \"street\": \"123 Main St\",\n                \"city\": \"New York\",\n                \"state\": \"NY\",\n                \"zipcode\": \"10011\"\n            }\n        }\n    ],\n    \"i9form_details\": {\n        \"verification\": {\n            \"verification_mode\": \"employee_authorized_representative\",\n            \"repr_email\": \"john.doe@vetty.co\",\n            \"repr_phone\": \"4411111111\"\n        }\n    },\n    \"healthcare_license\": [\n        {\n            \"license_code\": \"acupuncturist_license\",\n            \"candidate_name\": \"John doey\",\n            \"certifying_body\": \"vetty verify\",\n            \"license_number\": \"DQ128h8WD\",\n            \"issued_state\": \"CA\",\n            \"license_issued_date\": \"mm-yyyy\",\n            \"license_issued_expiry\": \"mm-yyyy\",\n            \"supporting_document_ids\": [\n                \"e3f2a6b6-6806-4ba4-aceb-443f8b754fac\"\n            ]\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/cfapi/v1/applicants"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"93b5e486-32ab-4f32-8bbd-c713c44770a1\",\n    \"first_name\": \"John\",\n    \"last_name\": \"Doe\",\n    \"middle_name\": \"\",\n    \"middle_name_exists\": false,\n    \"email\": \"john.doe@vetty.co\",\n    \"dob\": \"1993-01-05\",\n    \"ssn\": \"1231111234\",\n    \"phone\": \"(441) 111-1111\",\n    \"external_id\": \"123111123124\",\n    \"address\": {\n        \"street\": \"123 Main St\",\n        \"city\": \"New York\",\n        \"state\": \"NY\",\n        \"county\": \"New York\",\n        \"zipcode\": \"10011\",\n        \"country\": \"USA\"\n    },\n    \"previous_address\": [\n        {\n            \"address_id\": 1,\n            \"city\": \"Schenectady\",\n            \"from_month\": \"12\",\n            \"from_year\": \"2007\",\n            \"state\": \"NY\",\n            \"street\": \"Eastern Subway\",\n            \"street2\": \"\",\n            \"to_month\": \"10\",\n            \"to_year\": \"2011\",\n            \"zipcode\": \"12345\"\n        }\n    ],\n    \"former_name\": true,\n    \"expected_empstartdate\": \"2023-06-20\",\n    \"send_sms\" : true,\n    \"former_details\": [\n        {\n            \"former_id\": 1,\n            \"first_name\": \"John\",\n            \"last_name\": \"Doey\",\n            \"from_month\": \"01\",\n            \"from_year\": \"2005\",\n            \"checkmiddlename\": false,\n            \"middle_name\": \"\",\n            \"to_month\": \"02\",\n            \"to_year\": \"2017\"\n        }\n    ],\n    \"driver_license\": {\n        \"number\": \"111-222-3333\",\n        \"state\": \"NY\"\n    },\n    \"additional_driver_licenses\": [\n        {\n            \"id\": \"93b5e486-32ab-4f32-8bbd-c713c44770b1\",\n            \"number\": \"111-222-3334\",\n            \"state\": \"NY\",\n            \"start_date\": \"2017-01-01\",\n            \"end_date\": \"2019-12-31\"\n        }\n    ],\n    \"education_history\": [{\n        \"id\": \"93b5e486-32ab-4f32-8bbd-c713c44770c1\",\n        \"school_name\": \"NY degree colage\",\n        \"degree\": {\n            \"major\":\"Software Systems\",\n            \"degree_name\":\"Bachelors\",\n            \"degree_type\":\"Masters\",\n            \"graduation_date\":\"2010-06-01\",\n            \"degree_completed\":true\n        },\n        \"address\": {\n            \"street\": \"123 Main St\",\n            \"city\": \"New York\",\n            \"state\": \"NY\",\n            \"county\": \"New York\",\n            \"zipcode\": \"10011\",\n            \"country\": \"USA\"\n        },\n        \"first_name\": \"John\",\n        \"last_name\": \"Doe\",\n        \"middle_name\": \"\",\n        \"start_date\": \"2008-02-14\",\n        \"end_date\": \"2011-08-11\",\n        \"gpa\": \"4.0\",\n        \"supporting_document_ids\": [\"e3f2a6b6-6806-4ba4-aceb-443f8b754fac\", \"d4dgwhfs-4321-4ba4-aceb-443ijw354fad\"]\n    }],\n    \"employment_history\": [\n        {\n            \"id\": \"93b5e486-32ab-4f32-8bbd-c713c44770d1\",\n            \"name_of_employer\": \"Vetty\",\n            \"job_title\": \"Software Developer\",\n            \"start_date\": \"2017-01-01\",\n            \"end_date\": \"2019-12-31\",\n            \"address\": {\n                \"street\": \"123 Main St\",\n                \"city\": \"New York\",\n                \"state\": \"NY\",\n                \"county\": \"New York\",\n                \"zipcode\": \"10011\",\n                \"country\": \"USA\"\n            },\n            \"fax\": \"1234324\",\n            \"current_employer\": true,\n            \"self_employed\": false,\n            \"permission_to_contact\": true\n        }\n    ],\n    \"licenses\": [\n        {\n            \"id\": \"93b5e486-32ab-4f32-8bbd-c713c44770e1\",\n            \"type\": \"license type\",\n            \"number\": \"1341342134231\",\n            \"expiration_date\": \"2020-01-01\",\n            \"certifying_body\": \"certifying body name\",\n            \"supporting_document_ids\": [\"e3f2a6b6-6806-4ba4-aceb-443f8b754fac\", \"d4dgwhfs-4321-4ba4-aceb-443ijw354fad\"]\n        }\n    ],\n    \"references\": [\n        {\n            \"name\": \"Prince\",\n            \"phone\": \"4411111111\",\n            \"alternate_phone\": \"4411111111\",\n            \"email\": \"harmeet+10.hybrid.client@vetty.co\",\n            \"relationship\": \"Manager\",\n            \"otherRelationship\": \"\",\n            \"address\": {\n                \"street\": \"123 Main St\",\n                \"city\": \"New York\",\n                \"state\": \"NY\",\n                \"zipcode\": \"10011\"\n            }\n        }\n    ],\n    \"i9form_details\": {\n        \"verification\": {\n            \"verification_mode\": \"employee_authorized_representative\",\n            \"repr_email\": \"john.doe@vetty.co\",\n            \"repr_phone\": \"4411111111\"\n        }\n    },\n    \"healthcare_license\": [\n        {\n            \"license_code\": \"acupuncturist_license\",\n            \"candidate_name\": \"John doey\",\n            \"certifying_body\": \"vetty verify\",\n            \"license_number\": \"DQ128h8WD\",\n            \"issued_state\": \"CA\",\n            \"license_issued_date\": \"mm-yyyy\",\n            \"license_issued_expiry\": \"mm-yyyy\",\n            \"supporting_document_ids\": [\n                \"e3f2a6b6-6806-4ba4-aceb-443f8b754fac\"\n            ]\n        }\n    ],\n    \"cost_center_id\" : \"b4f23666-6805-4fa4-nceb-443f8b754gde\",\n    \"department\": \"6759059bd90cf07c450965ea\"\n}"}],"_postman_id":"4ba4e602-259e-4d8f-9692-eb2b5183228b"},{"name":"Archive Applicant","id":"6c2bd452-a44d-4026-b414-1241a92f7375","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{access_token}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"archived\": true\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/cfapi/v1/applicants/{applicant_id}?archive=true","description":"<p>Archive an applicant</p>\n","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"8f1a1d6b-81bf-48cc-a19f-f12fa57cc73d","id":"8f1a1d6b-81bf-48cc-a19f-f12fa57cc73d","name":"Vetty API","type":"collection"}},"urlObject":{"path":["cfapi","v1","applicants","{applicant_id}"],"host":["{{host}}"],"query":[{"key":"archive","value":"true"}],"variable":[]}},"response":[{"id":"73530651-2c66-483d-987e-1066f37d0cd3","name":"Archive Applicant","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{access_token}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"archived\": true\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"{{host}}/cfapi/v1/applicants/{applicant_id}?archive=true","host":["{{host}}"],"path":["cfapi","v1","applicants","{applicant_id}"],"query":[{"key":"archive","value":"true"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"archived\": true\n}"}],"_postman_id":"6c2bd452-a44d-4026-b414-1241a92f7375"}],"id":"3704e2f5-c1fe-4a0b-bdb9-2c03c84ed392","description":"<p>An applicant is the individual on who the check is being performed. To initiate a check an applicant must first be created. Applicants can be retrieved and listed.</p>\n<p>Please Note: if the package has I9 verification or healthcare licenses and certifications verification there may be additional information that has to be provided in the payload before the screening is started. Please check I9 workflows from the example dropdown for more details.</p>\n","event":[{"listen":"prerequest","script":{"id":"a8c5ac20-64ea-43b4-b030-27e3fcc0cda9","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"61c6ac77-a67b-4cd8-a976-c37f3834155d","type":"text/javascript","exec":[""]}}],"_postman_id":"3704e2f5-c1fe-4a0b-bdb9-2c03c84ed392","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"8f1a1d6b-81bf-48cc-a19f-f12fa57cc73d","id":"8f1a1d6b-81bf-48cc-a19f-f12fa57cc73d","name":"Vetty API","type":"collection"}}},{"name":"Document","item":[{"name":"Upload applicant document","id":"47530142-9286-45df-b7f6-5d056e107068","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{access_token}}"},{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"disclosure\",\n    \"content_type\": \"application/pdf\",\n    \"content\": \"base64 encoded string\",\n    \"filename\": \"disclosure.pdf\"\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/cfapi/v1/applicants/{applicant_id}/documents","description":"<p>Upload document</p>\n","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"8f1a1d6b-81bf-48cc-a19f-f12fa57cc73d","id":"8f1a1d6b-81bf-48cc-a19f-f12fa57cc73d","name":"Vetty API","type":"collection"}},"urlObject":{"path":["cfapi","v1","applicants","{applicant_id}","documents"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"f83e10e2-7b1b-40a2-87d7-c2ae3ae5cf00","name":"Upload response","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{access_token}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"consent\",\n    \"content_type\": \"application/pdf\",\n    \"content\": \"base64 encoded string\",\n    \"filename\": \"consent.pdf\"\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/cfapi/v1/applicants/{applicant_id}/documents"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"e3f2a6b6-6806-4ba4-aceb-443f8b754fac\",\n    \"type\": \"disclosure\",\n    \"created_at\": \"2020-07-11T20:10:230Z\",\n    \"download_uri\": \"https://api.vetty.co/cfapi/download_path\",\n    \"filesize\": 9456,\n    \"filename\": \"disclosure.pdf\",\n    \"content_type\": \"application/pdf\"\n}"}],"_postman_id":"47530142-9286-45df-b7f6-5d056e107068"},{"name":"Retrieve an existing document","id":"b5d4a5b3-c30a-49ba-864f-589c87f78960","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{access_token}}"},{"key":"Content-Type","type":"text","value":"application/json"}],"url":"{{host}}/cfapi/v1/applicants/{applicant_id}/documents/{document_id}","description":"<p>Get metadata about the document. Use the <code>download_url</code> to retrieve the actual document.</p>\n","urlObject":{"path":["cfapi","v1","applicants","{applicant_id}","documents","{document_id}"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"46f6e021-d467-4a23-aa80-ac9ad9f99a83","name":"Retrieve an existing document","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"url":{"raw":"{{host}}/cfapi/v1/applicants/{applicant_id}/documents/{document_id}","host":["{{host}}"],"path":["cfapi","v1","applicants","{applicant_id}","documents","{document_id}"],"query":[{"key":"","value":null,"type":"text","disabled":true}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"e3f2a6b6-6806-4ba4-aceb-443f8b754fac\",\n    \"type\": \"consent\",\n    \"created_at\": \"2020-07-11T20:10:230Z\",\n    \"download_uri\": \"https://api.vetty.co/cfapi/v1/return_file?file_id=e3f2a6b6-6806-4ba4-aceb-443f8b754fac\",\n    \"filesize\": 9456,\n    \"filename\": \"consent.pdf\",\n    \"content_type\": \"application/pdf\"\n}"}],"_postman_id":"b5d4a5b3-c30a-49ba-864f-589c87f78960"},{"name":"Get all documents","id":"b70047e1-c5ce-4095-8c4b-212b897f9ada","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"url":"{{host}}/cfapi/v1/applicants/{applicant_id}/documents","description":"<p>Get metadata about all the documents uploaded for the applicant. Use the <code>download_uri</code> to retrieve the actual document.</p>\n","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"8f1a1d6b-81bf-48cc-a19f-f12fa57cc73d","id":"8f1a1d6b-81bf-48cc-a19f-f12fa57cc73d","name":"Vetty API","type":"collection"}},"urlObject":{"path":["cfapi","v1","applicants","{applicant_id}","documents"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"82e22fde-28fa-4275-ba96-eabee715b376","name":"Get all documents","originalRequest":{"method":"GET","header":[],"url":"{{host}}/cfapi/v1/applicants/{applicant_id}/documents"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": \"e3f2a6b6-6806-4ba4-aceb-443f8b754faa\",\n        \"type\": \"consent\",\n        \"created_at\": \"2020-07-11T20:10:230Z\",\n        \"download_uri\": \"https://api.vetty.co/cfapi/v1/return_file?file_id=e3f2a6b6-6806-4ba4-aceb-443f8b754faa\",\n        \"filesize\": 9456,\n        \"filename\": \"consent1.pdf\",\n        \"content_type\": \"application/pdf\"\n    },\n    {\n        \"id\": \"e3f2a6b6-6806-4ba4-aceb-443f8b754fac\",\n        \"type\": \"consent\",\n        \"created_at\": \"2020-07-11T20:10:230Z\",\n        \"download_uri\": \"https://api.vetty.co/cfapi/v1/return_file?file_id=e3f2a6b6-6806-4ba4-aceb-443f8b754fac\",\n        \"filesize\": 9456,\n        \"filename\": \"consent2.pdf\",\n        \"content_type\": \"application/pdf\"\n    }\n]"}],"_postman_id":"b70047e1-c5ce-4095-8c4b-212b897f9ada"}],"id":"03996aea-0337-43f6-af6b-aa6248358262","description":"<p>Represents a Document related to a Applicant (such as a Driver License image, or a consent form).</p>\n<p><em>Valid type of documents:</em></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Upload Type</th>\n<th>Document Name</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>disclosure</td>\n<td>BC Disclosure</td>\n</tr>\n<tr>\n<td>authorization</td>\n<td>Auth Disclosure</td>\n</tr>\n<tr>\n<td>rights_disclosure</td>\n<td>Your Rights</td>\n</tr>\n<tr>\n<td>disclosure_ca</td>\n<td>CA Work Disclosure</td>\n</tr>\n<tr>\n<td>nh_disclosure</td>\n<td>NH MVR Disclosure</td>\n</tr>\n<tr>\n<td>wa_disclosure</td>\n<td>WA MVR Disclosure</td>\n</tr>\n<tr>\n<td>pa_disclosure</td>\n<td>PA MVR Disclosure</td>\n</tr>\n<tr>\n<td>w9_form</td>\n<td>W9 Form</td>\n</tr>\n<tr>\n<td>i9form</td>\n<td>I9 Form</td>\n</tr>\n<tr>\n<td>insurance_policy</td>\n<td>Insurance Policy</td>\n</tr>\n<tr>\n<td>license_certificate</td>\n<td>License Certification</td>\n</tr>\n<tr>\n<td>dispute_proof</td>\n<td>Dispute Docs</td>\n</tr>\n<tr>\n<td>donor_pass</td>\n<td>Health Screening Donor Pass</td>\n</tr>\n<tr>\n<td>healthcare_license_certificate</td>\n<td>Healthcare Licenses and Certifications</td>\n</tr>\n<tr>\n<td>pre_adverse</td>\n<td>Pre Adverse Custom Document</td>\n</tr>\n<tr>\n<td>adverse</td>\n<td>Adverse Custom Document</td>\n</tr>\n</tbody>\n</table>\n</div><p>Some of the states require state specific disclosures, these states are <code>Pennsylvania</code>, <code>Washington</code>, <code>California</code> and <code>New Hampshire</code>.</p>\n","_postman_id":"03996aea-0337-43f6-af6b-aa6248358262","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"8f1a1d6b-81bf-48cc-a19f-f12fa57cc73d","id":"8f1a1d6b-81bf-48cc-a19f-f12fa57cc73d","name":"Vetty API","type":"collection"}}},{"name":"Screening","item":[{"name":"Create a new screening","id":"db15a9cb-b6a9-4c88-971b-113dbc35c505","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"applicant_id\": \"60dd093bef2b6f000a60965b\",\n    \"package_id\": \"5cb76e00056f7c4fa6804aab\",\n    \"invite\": {\n        \"method\": \"email\"\n    },\n    \"optional_check\": [\n        {\n            \"title\": \"TB Skin Test\",\n            \"code\": \"tb_skin_test\"\n        },\n        {\n            \"title\": \"Drug\",\n            \"code\": \"localized_drugs\",\n            \"items_included\": [\n                \"panel_10_opiates\"\n            ]\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/cfapi/v1/screenings?Authorization=your-example-key","description":"<p>To initiate the screening, there are three invite types: email, URL and fill_on_behalf.</p>\n<p>For the non-invite flow, do not pass the invite method in the payload.</p>\n<p>Optional checks are supported in the following invite types:</p>\n<ol>\n<li><p>email</p>\n</li>\n<li><p>url</p>\n</li>\n<li><p>non-invite flow</p>\n</li>\n</ol>\n<p>For the \"fill_on_behalf\" invite type, if the package includes certain checks, those same checks cannot be passed as ala carte checks.</p>\n<p>The following checks are not supported for the \"fill_on_behalf\" invite type:</p>\n<ol>\n<li><p>id_check</p>\n</li>\n<li><p>i9_form</p>\n</li>\n<li><p>covid19_tracker</p>\n</li>\n<li><p>e_verify</p>\n</li>\n</ol>\n<p>Invite type \"fill_on_behalf\" does not support optional checks. To include additional checks, please use alacarte checks.</p>\n<p>If both optional checks and alacarte checks are included in a screening request, only the alacarte checks will be processed.</p>\n<p>To set an expiry date for a donor pass, use the <code>donor_pass_expiry</code> key during screening. The value can range from 1 to 90 days.</p>\n<p><strong>Schema Update when invite method = 'fill_on_behalf'</strong></p>\n<p>While creating a new screening with the method = 'fill_on_behalf', the following <strong>additional</strong> keys have been included -</p>\n<ul>\n<li><p>'scope' - Defines the number of years for which check has to be run.</p>\n</li>\n<li><p>'previous_address' - Defines the number of previous addresses of the candidate to include as part of the check.</p>\n</li>\n</ul>\n<p>For the 'ala_carte_check' ='Criminal County',</p>\n<p>\"scope\": \"7\",<br />\"previous_address\": \"3\"</p>\n<p>For the 'ala_carte_check' = 'State Criminal'</p>\n<p>\"scope\": \"10\",<br />\"previous_address\": \"1\"</p>\n<p>For the 'ala_carte_check' = 'County Civil',</p>\n<p>\"scope\": \"7\",<br />\"previous_address\": \"1\"</p>\n","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"8f1a1d6b-81bf-48cc-a19f-f12fa57cc73d","id":"8f1a1d6b-81bf-48cc-a19f-f12fa57cc73d","name":"Vetty API","type":"collection"}},"urlObject":{"path":["cfapi","v1","screenings"],"host":["{{host}}"],"query":[{"key":"Authorization","value":"your-example-key"}],"variable":[]}},"response":[{"id":"8a72309d-0ecf-47a4-92b3-0e1103a0b8d1","name":"new screening - send email invite","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{access_token}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"applicant_id\": \"93b5e486-32ab-4f32-8bbd-c713c44770a1\",\n    \"package_id\": \"3654242b-16ac-42ee-8e00-bc27d49d47d1\",\n    \"invite\": {\n        \"method\": \"email\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/cfapi/v1/screenings"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"6fd5b328-e945-4e63-9149-e4117f6cafee\",\n    \"applicant_id\": \"93b5e486-32ab-4f32-8bbd-c713c44770a1\",\n    \"package_id\": \"3654242b-16ac-42ee-8e00-bc27d49d47d1\",\n    \"invite\": {\n        \"method\": \"email\"\n    }\n}"},{"id":"affefdbf-64af-4eaf-9c13-4e0e7b834db0","name":"new screening - Set Donor pass expiry days","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{access_token}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"applicant_id\": \"93b5e486-32ab-4f32-8bbd-c713c44770a1\",\n    \"package_id\": \"3654242b-16ac-42ee-8e00-bc27d49d47d1\",\n    \"invite\": {\n        \"method\": \"email\"\n    },\n    \"donor_pass_expiry\": \"10\"\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/cfapi/v1/screenings"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"6fd5b328-e945-4e63-9149-e4117f6cafee\",\n    \"applicant_id\": \"93b5e486-32ab-4f32-8bbd-c713c44770a1\",\n    \"package_id\": \"3654242b-16ac-42ee-8e00-bc27d49d47d1\",\n    \"invite\": {\n        \"method\": \"email\"\n    },\n    \"donor_pass_expiry\": \"10\"\n}"},{"id":"e2e98327-101b-4cdb-8bb0-a6a6000b175e","name":"new screening - Fill on behalf","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{access_token}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"applicant_id\": \"93b5e486-32ab-4f32-8bbd-c713c44770a1\",\n    \"package_id\": \"3654242b-16ac-42ee-8e00-bc27d49d47d1\",\n    \"invite\": {\n        \"method\": \"fill_on_behalf\"\n    },\n    \"ala_carte_check\": [\n        {\n            \"title\": \"Criminal County\",\n            \"code\": \"crimcounty\",\n            \"options\": {\n                \"aliases\": \"yes\",\n                \"count\": \"3\",\n                \"scope\": \"7\",\n                \"previous_address\": \"3\"\n            }\n        },\n        {\n            \"title\": \"National Criminal\",\n            \"code\": \"natcrim\",\n            \"options\": {\n                \"aliases\": \"no\"\n            }\n        },\n        {\n            \"title\": \"State Criminal\",\n            \"code\": \"statecrim\",\n            \"options\": {\n                \"aliases\": \"yes\",\n                \"count\": \"3\",\n                \"scope\": \"10\",\n                \"previous_address\": \"1\"\n            }\n        },\n        {\n            \"title\": \"County Civil\",\n            \"code\": \"countycivil\",\n            \"options\": {\n                \"aliases\": \"yes\",\n                \"count\": \"10\",\n                \"scope\": \"7\",\n                \"previous_address\": \"1\"\n            }\n        },\n        {\n            \"title\": \"Education Verification\",\n            \"code\": \"edver\",\n            \"options\": {\n                \"verification_count\": \"1\"\n            }\n        },\n        {\n            \"title\": \"Employment Verification\",\n            \"code\": \"empver\",\n            \"options\": {\n                \"verification_count\": \"2\"\n            }\n        },\n        {\n            \"title\": \"Reference Verification\",\n            \"code\": \"refver\",\n            \"no_of_reference\": \"2\",\n            \"refver_contact_mode\": \"Both\"\n        },\n        {\n            \"title\": \"Quantitative Mask Fit\",\n            \"code\": \"mask_fit_quant\"\n        },\n        {\n            \"title\": \"Drug\",\n            \"code\": \"localized_drugs\",\n            \"options\": {\n                \"items_included\": [\n                    \"panel_10_alcohol\"\n                ]\n            }\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/cfapi/v1/screenings"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"93b5e486-32ab-4f32-8bbd-c713c44770a1\",\n    \"applicant_id\": \"93b5e486-32ab-4f32-8bbd-c713c44770a1\",\n    \"package_id\": \"3654242b-16ac-42ee-8e00-bc27d49d47d1\",\n    \"invite\": {\n        \"method\": \"fill_on_behalf\"\n    },\n    \"ala_carte_check\": [\n        {\n            \"title\": \"Criminal County\",\n            \"code\": \"crimcounty\",\n            \"options\": {\n                \"aliases\": \"yes\",\n                \"count\": \"3\",\n                \"scope\": \"7\",\n                \"previous_address\": \"3\"\n            }\n        },\n        {\n            \"title\": \"National Criminal\",\n            \"code\": \"natcrim\",\n            \"options\": {\n                \"aliases\": \"no\"\n            }\n        },\n        {\n            \"title\": \"State Criminal\",\n            \"code\": \"statecrim\",\n            \"options\": {\n                \"aliases\": \"yes\",\n                \"count\": \"3\",\n                \"scope\": \"10\",\n                \"previous_address\": \"1\"\n            }\n        },\n        {\n            \"title\": \"County Civil\",\n            \"code\": \"countycivil\",\n            \"options\": {\n                \"aliases\": \"yes\",\n                \"count\": \"10\",\n                \"scope\": \"7\",\n                \"previous_address\": \"1\"\n            }\n        },\n        {\n            \"title\": \"Education Verification\",\n            \"code\": \"edver\",\n            \"options\": {\n                \"verification_count\": \"1\"\n            }\n        },\n        {\n            \"title\": \"Employment Verification\",\n            \"code\": \"empver\",\n            \"options\": {\n                \"verification_count\": \"2\"\n            }\n        },\n        {\n            \"title\": \"Reference Verification\",\n            \"code\": \"refver\",\n            \"no_of_reference\": \"2\",\n            \"refver_contact_mode\": \"Both\"\n        },\n        {\n            \"title\": \"Quantitative Mask Fit\",\n            \"code\": \"mask_fit_quant\"\n        },\n        {\n            \"title\": \"Drug\",\n            \"code\": \"localized_drugs\",\n            \"options\": {\n                \"items_included\": [\n                    \"panel_10_alcohol\"\n                ]\n            }\n        }\n    ],\n    \"redirect_url\": \"https://stgclient.vetty.co/client/login?candidateId=\"\n}"},{"id":"9dd10645-3e1b-4386-8e15-d95cb9aa9e5d","name":"new screening - with optional checks","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{access_token}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"applicant_id\": \"60dd093bef2b6f000a60965b\",\n    \"package_id\": \"5cb76e00056f7c4fa6804aab\",\n    \"invite\": {\n        \"method\": \"email\"\n    },\n    \"optional_check\": [\n        {\n            \"title\": \"TB Skin Test\",\n            \"code\": \"tb_skin_test\"\n        },\n        {\n            \"title\": \"Drug\",\n            \"code\": \"localized_drugs\",\n            \"items_included\": [\n                \"panel_10_opiates\"\n            ]\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/cfapi/v1/screenings"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"6fd5b328-e945-4e63-9149-e4117f6cafee\",\n    \"applicant_id\": \"93b5e486-32ab-4f32-8bbd-c713c44770a1\",\n    \"package_id\": \"3654242b-16ac-42ee-8e00-bc27d49d47d1\",\n    \"invite\": {\n        \"method\": \"email\"\n    },\n    \"optional_check\": [\n        {\n            \"title\": \"TB Skin Test\",\n            \"code\": \"tb_skin_test\"\n        },\n        {\n            \"title\": \"Drug\",\n            \"code\": \"localized_drugs\",\n            \"items_included\": [\n                \"panel_10_opiates\"\n            ]\n        }\n    ]\n}"},{"id":"cc060098-8170-4507-8cf5-890e9d0bdd5f","name":"new screening - send URL","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{access_token}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"applicant_id\": \"93b5e486-32ab-4f32-8bbd-c713c44770a1\",\n    \"package_id\": \"3654242b-16ac-42ee-8e00-bc27d49d47d1\",\n    \"invite\": {\n        \"method\": \"url\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/cfapi/v1/screenings"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"6fd5b328-e945-4e63-9149-e4117f6cafee\",\n    \"applicant_id\": \"93b5e486-32ab-4f32-8bbd-c713c44770a1\",\n    \"package_id\": \"3654242b-16ac-42ee-8e00-bc27d49d47d1\",\n    \"invite\": {\n        \"method\": \"url\"\n    },\n    \"access_url\": \"http://stgapplicant.vetty.co/applicant-welcome?token=\"\n}"},{"id":"fb7da3cd-6b37-4079-ad40-f167ff4cb410","name":"initiate new screening","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{access_token}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"applicant_id\": \"93b5e486-32ab-4f32-8bbd-c713c44770a1\",\n    \"package_id\": \"3654242b-16ac-42ee-8e00-bc27d49d47d1\"\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/cfapi/v1/screenings"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"60dd093bef2b6f000a60965b\",\n    \"applicant_id\": \"60dd093bef2b6f000a60965b\",\n    \"package_id\": \"5cb76e00056f7c4fa6804aab\"\n}"}],"_postman_id":"db15a9cb-b6a9-4c88-971b-113dbc35c505"},{"name":"Get screening status","id":"159b5809-3cce-4857-9ff1-8e5d75feaa80","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"url":"{{host}}/cfapi/v1/screenings/{screening_id}","description":"<p>Get screening status, valid status values are: <code>in_progress</code>, <code>approval_needed</code>, <code>clear</code>, <code>review_required</code>, <code>inconclusive</code>, <code>error</code>, <code>idv_fail</code>, <code>archived</code>, <code>adverse</code>, <code>pending_applicant</code>,<code>dispute_under_review</code>, <code>pre_adverse</code>, <code>accepted</code>, <code>not_meet_hiring_criteria</code>, <code>coi_expired</code> and <code>inconclusive_ca</code></p>\n","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"8f1a1d6b-81bf-48cc-a19f-f12fa57cc73d","id":"8f1a1d6b-81bf-48cc-a19f-f12fa57cc73d","name":"Vetty API","type":"collection"}},"urlObject":{"path":["cfapi","v1","screenings","{screening_id}"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"5947a57d-0c48-483c-9c29-1ac336e88a30","name":"screening response","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"url":"{{host}}/cfapi/v1/screenings/{screening_id}"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": \"86f0972f-37be-462a-8e2d-bf9e0af7a05c\",\n  \"package_id\": \"93b5e486-32ab-4f32-8bbd-c713c44770a1\",\n  \"applicant_id\": \"3e4f84e3-9078-4451-a8b8-5897f4f4f4e3\",\n  \"status\": \"in_progress\"\n}"}],"_postman_id":"159b5809-3cce-4857-9ff1-8e5d75feaa80"},{"name":"Get PDF report","id":"4a6b7e36-a1ea-4c07-b125-28524072b1d8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}","type":"text"},{"key":"Accept","value":"application/pdf","type":"text"}],"url":"{{host}}/cfapi/v1/screenings/{screening_id}/report?check={code}","description":"<p>Gets a binary output of the latest screening report PDF.</p>\n<p>To fetch the check-level report, please include the check name in the URL.</p>\n<p>To obtain the check name associated with the applicant, use the Get Applicant Checks API.</p>\n<p>If no check name is provided, the full report will be returned.</p>\n","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"8f1a1d6b-81bf-48cc-a19f-f12fa57cc73d","id":"8f1a1d6b-81bf-48cc-a19f-f12fa57cc73d","name":"Vetty API","type":"collection"}},"urlObject":{"path":["cfapi","v1","screenings","{screening_id}","report"],"host":["{{host}}"],"query":[{"key":"check","value":"{code}"}],"variable":[]}},"response":[{"id":"5c186372-6e87-417c-a522-2a195cae2b31","name":"Get PDF report for all checks","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}","type":"text"},{"key":"Accept","value":"application/pdf","type":"text"}],"url":"{{host}}/cfapi/v1/screenings/{screening_id}/report"},"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":""},{"id":"45fd1730-8021-4954-b396-6eb4349ce0d3","name":"Get PDF report for a single check","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}","type":"text"},{"key":"Accept","value":"application/pdf","type":"text"}],"url":{"raw":"{{host}}/cfapi/v1/screenings/{screening_id}/report?check={code}","host":["{{host}}"],"path":["cfapi","v1","screenings","{screening_id}","report"],"query":[{"key":"check","value":"{code}"}]}},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"4a6b7e36-a1ea-4c07-b125-28524072b1d8"},{"name":"Get JSON report v1","id":"5b5330f9-f180-4735-8258-4ac80aaade37","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"{{host}}/cfapi/v1/screenings/{screening_id}/report?check={code}","description":"<ul>\n<li><p>Gets raw JSON report of the latest screening.</p>\n</li>\n<li><p>To fetch the check-level report, please include the check name in the URL.</p>\n</li>\n<li><p>To obtain the check name associated with the applicant, use the Get Applicant Checks API.</p>\n</li>\n<li><p>If no check name is provided, the full report will be returned.</p>\n</li>\n<li><p>County Criminal check in Get JSON Report v1 API:</p>\n<ul>\n<li><p>County Criminal check includes multiple counties(sub-order) and each county may return one or more cases.</p>\n</li>\n<li><p>All cases retrieved from all county orders that are placed for the candidate’s County Criminal check are included in the 'cases' key in this API</p>\n</li>\n</ul>\n</li>\n</ul>\n","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"8f1a1d6b-81bf-48cc-a19f-f12fa57cc73d","id":"8f1a1d6b-81bf-48cc-a19f-f12fa57cc73d","name":"Vetty API","type":"collection"}},"urlObject":{"path":["cfapi","v1","screenings","{screening_id}","report"],"host":["{{host}}"],"query":[{"key":"check","value":"{code}"}],"variable":[]}},"response":[{"id":"961cc2da-6e51-4756-8a49-a84d0ecab5e3","name":"Get JSON report for all checks","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"{{host}}/cfapi/v1/screenings/{screening_id}/report"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"93b5e486-32ab-4f32-8bbd-c713c44770a1\",\n    \"screening_id\": \"54b5e486-32ab-4f32-8bbd-c713c44990b3\",\n    \"applicant_id\": \"54b5e486-32ab-4f32-8bbd-c713c44990b3\",\n    \"name\" : \"John Devine\",\n    \"dob\" : \"1974-08-10\",\n    \"email\" : \"john.devine@mail.com\",\n\n    \"insurance_verification\": {\n        \"status\": \"clear\", \n        \"date\": \"2019-01-01\",\n        \"cases\": [\n            {\n                \"status\": \"clear\", \n                \"date\": \"2019-01-01\",\n                \"insurance_type\" : \"coi\" // coi or worker_comp\n            }]\n    },\n    \"county_civil_search\": {\n        \"status\": \"clear\",  \n        \"date\": \"2019-01-01\",\n        \"cases\": [\n            {\n                \"first_name\" : \"John\",\n                \"last_name\" : \"Doe\",\n                \"middle_name\" : \"K\",\n                \"dob\" : \"1993-01-05\",\n                \"disposition_date\" : \"2011-12-24\",\n                \"case_number\": \"123123/2014\",\n                \"court\" : \"US-VA - 20th Circuit Court\",\n                \"status\" : \"completed\",\n                \"judgement_type\" : \"DISCONTINUED WITH PREJUDICE\",\n                \"defendant_company\" : \"COMPANY ABC\",\n                \"active_warrant\" : false,\n                \"result_status\" : \"Hit\",\n                \"file_date\" : \"2014-06-04\",\n                \"records_found\" : true,\n                \"case_type\" : \"CIVIL - OTHER TORTS NEGLIGENCE\",\n                \"county\" : \"Loudoun\"\n            }\n        ]\n    },\n    \"county_criminal_search\": {\n        \"status\": \"clear\",  \n        \"date\": \"2019-01-01\",\n        \"cases\": [\n            {\n                \"first_name\" : \"John\",\n                \"last_name\" : \"Doe\",\n                \"middle_name\" : \"K\",\n                \"hair_color\" : \"BLACK\",\n                \"disposition_date\" : \"2015-06-01\",\n                \"case_number\" : \"2015-ABC123.123\",\n                \"arrest_date\" : \"2015-05-02\",\n                \"status\" : \"completed\",\n                \"court\" : \"US-NY - Justice Court\",\n                \"offense_date\" : \"2015-05-01\",\n                \"county\" : \"Lee\",\n                \"records_found\" : \"clear\",\n                \"race\" : \"W\",\n                \"result_status\" : \"Hit\",\n                \"dob\" : \"1975-09-23\",\n                \"charges\" : [\n                    {\n                        \"charge\": \"SHOP LIFTING\", \n                        \"charge_level\": \"MISDEMEANOR\", \n                        \"cost\": \"35.00\", \n                        \"disposition\": \"CONVICTED\", \n                        \"file_date\": \"05/03/2015\", \n                        \"fines\": \"45.00\", \n                        \"jail_time\": \"15 DAYS\", \n                        \"probation\": \"10 MONTHS\", \n                        \"restitution\": \"55.66\", \n                        \"sentence\": \"15 DAYS  10 MONTHS  45.00\", \n                        \"sentence_suspended\": \"14 DAYS\"\n                    }\n                ]\n            }\n        ]\n    },\n    \"driving_license_report\": {\n        \"status\": \"verified\",\n        \"date\": \"2019-01-01\",\n        \"record\": [\n            {\n                \"status\": \"VALID\",\n                \"class_description\": \"CLASS O OPERATOR ANY NON COMMERCIAL VEHICLES\",\n                \"issue_date\": \"2019-06-06\",\n                \"expiration_date\": \"2029-06-06\",\n                \"class_code\": \"O\",\n                \"original_issue_date\": \"N/A\",\n                \"type\" : \"PERSONAL\"\n            }\n        ],\n        \"events\": [\n            {\n                \"conviction_date\": \"2009-04-12\",\n                \"subtype\": \"VIOL\",\n                \"state\": \"NY\",\n                \"location\": \"SAN FRANCISCO\",\n                \"disposition\": \"N/A\",\n                \"date\": \"2019-01-01\",\n                \"docket_number\": \"N/A\",\n                \"charges\" : [\n                    {\n                        \"state_description\": \"OPERATED WHILE IMPAIRED BY LIQUOR\",\n                        \"avd1\": \"N/A\",\n                        \"acd\": \"N/A\",\n                        \"adr_large_description\": \"N/A\",\n                        \"state_code\": \"N/A\",\n                        \"state_assigned_points\": 4,\n                        \"adr_small_description\": \"FAILURE TO APPEAR\"\n                    }\n                ]\n            }\n        ]\n    },\n    \"drug_screening\" : {\n        \"status\": \"clear\",\n        \"date\": \"2019-01-01\",\n        \"name\" : \"5 Panel Drug Screening\",\n        \"commnet\" : \"comments\",\n        \"laboratory\" : \"Quest Diagnostics\",\n        \"specimen_id\" : \"TESTCCF2343242\",\n        \"certified_officer\" : \"David Nahin M.D.\",\n        \"case_id\" : \"drugscreening-0-HWFXT\",\n        \"check_code\" : \"drugs_5pan\",\n        \"date_filed\" : \"2019-08-29\",\n        \"results\" : [\n            {\n                \"drug\" : \"PHENCYCLIDINE PCP\",\n                \"result\" : \"Negative\"\n            },\n            {\n                \"drug\" : \"OPIATES\",\n                \"result\" : \"Negative\"\n            },\n            {\n                \"drug\" : \"MARIJUANA\",\n                \"result\" : \"Positive\"\n            },\n            {\n                \"drug\" : \"AMPHETAMINES\",\n                \"result\" : \"Negative\"\n            },\n            {\n                \"drug\" : \"COCAINE\",\n                \"result\" : \"Negative\"\n            }\n        ]\n    },\n    \"education_verification\": {\n        \"status\": \"verified\",\n        \"date\": \"2019-01-01\",\n        \"record\": [\n            {\n                \"status\": \"verified\",   // verified, un-verified, review needed\n                \"school_name\": \"UNIVERSITY OF COLUMBUS\",\n                \"school_email\": \"REGISTRAR@COLUMBUSUNIV.EDU\",\n                \"school_fax\": \"855-212-4567\",\n                \"school_phone\": \"800-222-1234\",\n                \"school_street_address\": \"1100 UNIVERSITY AVE\",\n                \"school_city\": \"COLOMBUS\",\n                \"school_state\": \"OH\",\n                \"school_zip\": \"31345\",\n                \"graduated\": \"YES\",\n                \"person_contacted\": \"JUDY MILLER\",\n                \"attended_from\": \"2008-02-14\",\n                \"attended_to\": \"2011-08-11\",\n                \"degree\": {\n                    \"major\":\"Software Systems\",\n                    \"degree_name\":\"Bachelors\",\n                    \"degree_type\":\"Masters\",\n                    \"graduation_date\":\"2010-06-01\",\n                    \"degree_completed\":true\n                }\n            }\n        ]\n    },\n    \"employment_verification\": {\n        \"status\": \"verified\",\n        \"date\": \"2019-01-01\",\n        \"record\": [\n            {\n                \"status\": \"verified\",\n                \"employer_name\": \"ACME GENERAL, LTD\",\n                \"employer_email\": \"HUMANRESOURCES@ACMEGEN.COM\",\n                \"employer_street_address\": \"286 INDUSTRIAL RD\",\n                \"employer_city\": \"BOISE\",\n                \"employer_state\": \"ID\",\n                \"employer_zip\": \"45612\",\n                \"employer_phone\": \"800-555-7890\",\n                \"employer_fax\": \"234-123-1234\",\n                \"applicants_position\": \"ELECTRICIAN, III\",\n                \"person_contacted\": \"HENRY HAMILTON\",\n                \"reason_for_leaving\": \"CURRENT EMPLOYER\",\n                \"employed_from\": \"UNABLE TO VERIFY\"\n            }\n        ]\n    },\n    \"federal_criminal_search\": {\n        \"status\": \"clear\", \n        \"date\": \"2019-01-01\",\n        \"cases\": [\n            {\n                \"first_name\" : \"Jack\",\n                \"no_middle_name\" : true,\n                \"last_name\" : \"Flexer\",\n                \"disposition_date\" : \"2011-12-24\",\n                \"case_number\": \"4:2011-CR-00102\",\n                \"court\" : \"Northern District of Iowa\",\n                \"file_date\" : \"2011-08-24\",\n                \"charges\" : [\n                    {\n                        \"charge\" : \"MALICIOUS USE OF EXPLOSIVE MATERIALS\",\n                        \"charge_level\" : \"FELONY\",\n                        \"community_service\" : \"80 hours\",\n                        \"cost\" : \"100.00\",\n                        \"disposition\" : \"guilty\",\n                        \"other\" : \"2 YEARS SUPERVISED RELEASE, OBEY ALL LAWS, NO USE OR POSSESSION OF CONTROLLED SUBSTANCES, SUBMIT TO DRUG TESTS, NO FIREARMS, DNA COLLECTION, SUBMIT TO SEARCH;\",\n                        \"prison_time\" : \"15 months\"\n                    }\n                ]\n            }\n        ]\n    },\n    \"gsa_sam_search\": {\n        \"status\": \"clear\",  \n        \"date\": \"2019-01-01\",\n        \"records\": [\n            {\n                \"source\" : \"SECURITY WATCH LIST - EXCLUDED PARTIES LIST\"\n            }\n        ]\n    },\n    \"terrorist_watchlist_search\": {\n        \"status\": \"clear\",  \n        \"date\": \"2019-01-01\",\n        \"records\": [\n            {\n                \"source\" : \"SECURITY WATCH LIST - EXCLUDED PARTIES LIST\"\n            }\n        ]\n    },\n    \"licence_verification\": {\n        \"status\": \"clear\", \n        \"date\": \"2019-01-01\",\n        \"cases\": [\n            {\n                \"status\": \"clear\", \n                \"date\": \"2019-01-01\",\n                \"license_type\" : \"license type\",\n                \"certifying_body\" : \"certifying body name\"\n            }]\n    },\n    \"national_criminal_search\": {\n        \"status\": \"complete\",\n        \"date\": \"2019-01-01\"\n    },\n    \"oig_search\": { // office of inspector general\n        \"status\": \"clear\",  \n        \"date\": \"2019-01-01\",\n        \"records\": [\n            {\n                \"source\" : \"SECURITY WATCH LIST - HH SERVICES EXCLUSION\"\n            }\n        ]\n    },\n    \"sex_offender_search\": {\n        \"status\": \"clear\",\n        \"date\": \"2019-01-01\",\n        \"records\": [\n            {\n                \"source\": \"New York\"\n            }\n        ]\n    },\n    \"ssn_trace\": {\n        \"status\": \"complete\",   // it either \"complete\", \"in progress\", \"failed???\"\n        \"date\": \"2019-01-01\"\n    },\n    \"state_criminal_search\": {\n        \"status\": \"clear\",\n        \"date\": \"2019-01-01\",\n        \"cases\": [\n            {\n                \"first_name\" : \"John\",\n                \"last_name\" : \"Doe\",\n                \"no_middle_name\" : true,\n                \"case_in_progress\" : \"yes\",\n                \"case_number\": \"3:2000-mj-00008\",\n                \"state\" : \"IN\",\n                \"court\" : \"Northern District of Iowa\",\n                \"notes\" : \"Complaint: Fraudulent possession of an identification document in violation of 18:1028(a)(4)\",\n                \"file_date\" : \"2000-01-03\",\n                \"charges\" : [\n                    {\n                        \"charge\" : \"18:922(a)(1)(A).2 FIREARMS DEALING\",\n                        \"charge_id\" : \"SC-0-CR-1909-0000728\",\n                        \"charge_in_progress\" : \"yes\",\n                        \"charge_level\" : \"FELONY\",\n                        \"disposition\" : \"guilty\",\n                        \"next_court_date\" : \"none\",\n                        \"other\" : \"Charge Status: Pending| The defendant is hereby committed to the custody of the United States Bureau of Prisons to be imprisoned for a total term of 144 months. Upon release from imprisonment, the defendant shall be on supervised release for a term of 5 years.\"\n                    }\n                ]\n            }\n        ]\n    },\n    \"id_check\": {\n        \"status\": \"clear\",\n        \"date\": \"2019-01-01\"\n    },\n    \"credit_check\": {\n        \"status\": \"clear\",\n        \"date\": \"2019-01-01\",\n        \"summary\" : [\n            {\n                \"type\": \"REVOLVING\",\n                \"high_credit\": \"4842\",\n                \"credit_limit\": \"5500\",\n                \"balance\": \"1901\",\n                \"past_due\": \"733\",\n                \"percentage_credit_available\": \"65\"\n            }\n        ],\n        \"inquires\" : [\n            {\n                \"inquiry_date\": \"2020-01-21\",\n                \"inquiry_type\": \"Individual\",\n                \"subscriber_name\": \"HART SFTWRE\",\n                \"industry_code\": \"Miscellaneous and public record\",\n                \"member_code\": \"00001010\",\n                \"bureau_submarket\": \"TR\",\n                \"bureau_market\": \"06\"\n            }\n        ],\n        \"messages\": [\n            {\n                \"message\": \"SSN associated with additional subject(s) not displayed/returned\" // TODO: return other message fields?\n            }\n        ],\n        \"trades\": [\n            {\n                \"subscriber_name\": \"CBUSASEARS\",\n                \"subscriber_code\": \"D 06256367\",\n                \"date_opened\": \"2006-08-20\",\n                \"high_credit\": \"1500\",\n                \"credit_limit\": \"1500\",\n                \"collateral\": \"N/A\",\n                \"balance\": \"733\",\n                \"amount_past_due\": \"733\",\n                \"amount_of_payment\": \"230\",\n                \"account_number\": \"1230004586\",\n                \"account_type\": \"Installment account\",\n                \"loan_type\": \"Automibile\",\n                \"terms_frequency\": \"Monthly\",\n                \"terms_duration\": \"MIN\",\n                \"account_designator\": \"Individual account\",\n                \"mop\": \"I01\",\n                \"ecoa\": \"I\",\n                \"max_delinquency_amount\": \"296\",\n                \"max_delinquency_date\": \"2016-05-13\",\n                \"max_delinquency_mop\": \"03\",\n                \"times_90_days_late\": 0,\n                \"times_60_days_late\": 0,\n                \"times_30_days_late\": 0,\n                \"remarks\": \"N/A\",\n                \"payment_pattern_start_date\": \"2006-09-01\",\n                \"payment_pattern_1_to_12\": \"111111111111\",\n                \"payment_pattern_13_to_24\": \"111111111111\",\n                \"number_of_payments_past_due\": 0,\n                \"number_of_months_reviewed\": 24,\n                \"member_code\": \"06256367\",\n                \"date_paid_out\": \"N/A\",\n                \"date_of_last_activity\": \"N/A\",\n                \"date_closed_indicator\": \"N/A\",\n                \"date_closed\": \"N/A\",\n                \"current_manner_of_payment\": \"Paid or paying as agreed\",\n                \"currency\": \"United States currency\"\n            }\n        ]\n    },\n    \"reference_check\": {\n        \"status\": \"clear\", \n        \"date\": \"2019-01-01\",\n        \"references\": [\n            {\n                \"status\": \"clear\", \n                \"name\": \"Prince\",\n                \"phone\": \"4411111111\",\n                \"alternate_phone\": \"4411111111\",\n                \"email\": \"harmeet+10.hybrid.client@vetty.co\",\n                \"address\": {\n                    \"street\": \"123 Main St\",\n                    \"city\": \"New York\",\n                    \"state\": \"NY\",\n                    \"zipcode\": \"10011\"\n                }\n            }]\n    },\n    \"titers\": [\n        {\n            \"status\": \"Not Immune\",\n            \"date\": \"2023-05-10\",\n            \"name\": \"MMR Titer\",\n            \"comment\": \"\",\n            \"laboratory\": \"Quest Diagnostics\",\n            \"specimen_id\": \"4522\",\n            \"medical_review_officer\": \"David Nahin M.D.\",\n            \"date_filed\": \"2023-05-12\"\n        },\n        {\n            \"status\": \"Immune\",\n            \"date\": \"2023-05-10\",\n            \"name\": \"Varicella Titer\",\n            \"comment\": \"\",\n            \"laboratory\": \"Quest Diagnostics\",\n            \"specimen_id\": \"4522\",\n            \"medical_review_officer\": \"David Nahin M.D.\",\n            \"date_filed\": \"2023-05-18\"\n        },\n        {\n            \"status\": \"Immune\",\n            \"date\": \"2023-05-10\",\n            \"name\": \"Hepatitis B Surface AntiBody, Quantitative\",\n            \"comment\": \"\",\n            \"laboratory\": \"Quest Diagnostics\",\n            \"specimen_id\": \"74582\",\n            \"medical_review_officer\": \"David Nahin M.D.\",\n            \"date_filed\": \"2023-05-12\"\n        }\n    ],\n    \"drugs\": {\n        \"date\": \"2023-05-10\",\n        \"name\": \"10 Panel Drug\",\n        \"laboratory\": \"Quest Diagnostics\",\n        \"specimen_id\": \"74582\",\n        \"medical_review_officer\": \"David Nahin M.D.\",\n        \"date_filed\": \"2023-05-10\",\n        \"results\": [\n            {\n                \"drug\": \"PHENCYCLIDINE PCP\",\n                \"result\": \"Negative\"\n            },\n            {\n                \"drug\": \"OPIATES\",\n                \"result\": \"Positive\"\n            },\n            {\n                \"drug\": \"MARIJUANA\",\n                \"result\": \"Positive\"\n            },\n            {\n                \"drug\": \"AMPHETAMINES\",\n                \"result\": \"Negative\"\n            },\n            {\n                \"drug\": \"COCAINE\",\n                \"result\": \"Positive\"\n            },\n            {\n                \"drug\": \"Methaqualone\",\n                \"result\": \"Positive\"\n            },\n            {\n                \"drug\": \"Propoxyphene\",\n                \"result\": \"Positive\"\n            },\n            {\n                \"drug\": \"Benzodiazepines\",\n                \"result\": \"Negative\"\n            },\n            {\n                \"drug\": \"Methadone\",\n                \"result\": \"Negative\"\n            },\n            {\n                \"drug\": \"Barbiturates\",\n                \"result\": \"Positive\"\n            }\n        ]\n    },\n    \"vaccine\": {\n        \"status\": \"Vaccinated\",\n        \"date\": \"2023-05-10\",\n        \"name\": \"Hepatitis-B Vaccine\",\n        \"manufacturer\": \"\",\n        \"date_filed\": \"2023-05-12\",\n        \"expiry_date\": \"2023-05-19\"\n    },\n    \"mask_fit\": {\n        \"status\": \"Review Needed\",\n        \"date\": \"2023-05-10\",\n        \"comment\": \"\",\n        \"size\": \"4\",\n        \"result\": \"fail\",\n        \"date_filed\": \"2023-05-03\"\n    },\n    \"basic_physical\": {\n        \"status\": \"Review Needed\",\n        \"date\": \"2023-05-10\",\n        \"comment\": \"\",\n        \"result\": \"pass\",\n        \"date_filed\": \"2023-05-03\"\n    },\n    \"tb_skin_test\": {\n        \"status\": \"Review Needed\",\n        \"date\": \"2023-05-10\",\n        \"comment\": \"\",\n        \"date_filed\": \"2023-05-10\"\n    },\n    \"breath_alcohol\": {\n        \"status\": \"Review Needed\",\n        \"date\": \"2023-05-10\",\n        \"comment\": \"\",\n        \"result\": \"positive\"\n    },\n    \"vision_test\": {\n        \"status\": \"Review Needed\",\n        \"date\": \"2023-05-10\",\n        \"result\": \"Normal Color Vision\",\n        \"date_filed\": \"2023-05-10\"\n    }\n}"},{"id":"5d573e5c-6440-401c-a2c4-b23fe55e03bd","name":"Get JSON report for a single check","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"{{host}}/cfapi/v1/screenings/{screening_id}/report?check={code}","host":["{{host}}"],"path":["cfapi","v1","screenings","{screening_id}","report"],"query":[{"key":"check","value":"{code}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"93b5e486-32ab-4f32-8bbd-c713c44770a1\",\n    \"screening_id\": \"54b5e486-32ab-4f32-8bbd-c713c44990b3\",\n    \"applicant_id\": \"54b5e486-32ab-4f32-8bbd-c713c44990b3\",\n    \"name\" : \"John Devine\",\n    \"dob\" : \"1974-08-10\",\n    \"email\" : \"john.devine@mail.com\",\n    \"county_criminal_search\": {\n        \"status\": \"clear\",  \n        \"date\": \"2019-01-01\",\n        \"cases\": [\n            {\n                \"first_name\" : \"John\",\n                \"last_name\" : \"Doe\",\n                \"middle_name\" : \"K\",\n                \"hair_color\" : \"BLACK\",\n                \"disposition_date\" : \"2015-06-01\",\n                \"case_number\" : \"2015-ABC123.123\",\n                \"arrest_date\" : \"2015-05-02\",\n                \"status\" : \"completed\",\n                \"court\" : \"US-NY - Justice Court\",\n                \"offense_date\" : \"2015-05-01\",\n                \"county\" : \"Lee\",\n                \"records_found\" : \"clear\",\n                \"race\" : \"W\",\n                \"result_status\" : \"Hit\",\n                \"dob\" : \"1975-09-23\",\n                \"charges\" : [\n                    {\n                        \"charge\": \"SHOP LIFTING\", \n                        \"charge_level\": \"MISDEMEANOR\", \n                        \"cost\": \"35.00\", \n                        \"disposition\": \"CONVICTED\", \n                        \"file_date\": \"05/03/2015\", \n                        \"fines\": \"45.00\", \n                        \"jail_time\": \"15 DAYS\", \n                        \"probation\": \"10 MONTHS\", \n                        \"restitution\": \"55.66\", \n                        \"sentence\": \"15 DAYS  10 MONTHS  45.00\", \n                        \"sentence_suspended\": \"14 DAYS\"\n                    }\n                ]\n            }\n        ]\n    }\n}"}],"_postman_id":"5b5330f9-f180-4735-8258-4ac80aaade37"},{"name":"Get JSON report v2","id":"9c263e93-d428-4260-854c-b162a200c203","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"{{host}}/cfapi/v2/screenings/{screening_id}/report?check={code}","description":"<p>The v1 and v2 versions of the Get JSON Report API are identical <strong>except</strong> for the below change in JSON schema for the County Criminal Check in Get JSON Report v2 API:</p>\n<ul>\n<li><p>County Criminal check includes multiple counties(sub-order) and each county may return one or more cases.</p>\n</li>\n<li><p>In the v2 version of the Get JSON report API, details associated with each county(sub-order) are stored in the ‘search_details’ key</p>\n</li>\n<li><p>Each object in the ‘search_details’ key returns the county-specific details such as search details and all cases in that county.</p>\n</li>\n</ul>\n<p>Note: v2 version of the Get JSON Report API is only supported for applicants created after 9/18/2024</p>\n","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"8f1a1d6b-81bf-48cc-a19f-f12fa57cc73d","id":"8f1a1d6b-81bf-48cc-a19f-f12fa57cc73d","name":"Vetty API","type":"collection"}},"urlObject":{"path":["cfapi","v2","screenings","{screening_id}","report"],"host":["{{host}}"],"query":[{"key":"check","value":"{code}"}],"variable":[]}},"response":[{"id":"a89b2ad7-9494-488c-8dcb-9923973da16e","name":"Get JSON report for all checks","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"{{host}}/cfapi/v2/screenings/{screening_id}/report"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"93b5e486-32ab-4f32-8bbd-c713c44770a1\",\n    \"screening_id\": \"54b5e486-32ab-4f32-8bbd-c713c44990b3\",\n    \"applicant_id\": \"54b5e486-32ab-4f32-8bbd-c713c44990b3\",\n    \"name\" : \"John Devine\",\n    \"dob\" : \"1974-08-10\",\n    \"email\" : \"john.devine@mail.com\",\n\n    \"insurance_verification\": {\n        \"status\": \"clear\", \n        \"date\": \"2019-01-01\",\n        \"cases\": [\n            {\n                \"status\": \"clear\", \n                \"date\": \"2019-01-01\",\n                \"insurance_type\" : \"coi\"\n            }]},\n    \"county_civil_search\": {\n        \"status\": \"Clear\",\n        \"date\": \"2025-03-05\",\n        \"search_details\": [\n            {\n                \"title\": \"John Doe - Gwinnett, GA\",\n                \"status\": \"Review Needed\",\n                \"scope\": 7,\n                \"ordered\": \"02/26/2025\",\n                \"eta\": \"08/24/2022\",\n                \"cases\": [\n                    {\n                        \"first_name\": \"John\",\n                        \"last_name\": \"Doe\",\n                        \"middle_name\": \"K\",\n                        \"dob\": \"1993-01-05\",\n                        \"disposition_date\": \"2011-12-24\",\n                        \"case_number\": \"123123/2014\",\n                        \"court\": \"US-VA - 20th Circuit Court\",\n                        \"status\": \"completed\",\n                        \"judgement_type\": \"DISCONTINUED WITH PREJUDICE\",\n                        \"defendant_company\": \"COMPANY ABC\",\n                        \"active_warrant\": false,\n                        \"result_status\": \"Hit\",\n                        \"file_date\": \"2014-06-04\",\n                        \"records_found\": true,\n                        \"case_type\": \"CIVIL - OTHER TORTS NEGLIGENCE\",\n                        \"county\": \"Loudoun\"\n                    }\n                ]\n            }\n        ]\n    },\n    \"county_criminal_search\": {\n        \"status\": \"In Progress\",\n        \"date\": \"2024-10-01\",\n        \"search_details\": [\n            {\n                \"title\": \"MICHELOB JOHANNSEN - Schenectady, NY\",\n                \"status\": \"Review Needed\",\n                \"scope\": 10,\n                \"ordered\": \"10/01/2024\",\n                \"eta\": \"08/11/2021\",\n                \"cases\": [\n                    {\n                        \"first_name\": \"MICHELOB\",\n                        \"last_name\": \"JOHANNSEN\",\n                        \"middle_name\": \"ARMSTRONG\",\n                        \"hair_color\": \"\",\n                        \"disposition_date\": \"03/19/2009\",\n                        \"case_number\": \"07-T-5123\",\n                        \"arrest_date\": \"\",\n                        \"status\": \"COMPLETE\",\n                        \"court\": \"STATE COURT\",\n                        \"offense_date\": \"08/24/2019\",\n                        \"county\": \"COBB\",\n                        \"records_found\": \"\",\n                        \"race\": \"\",\n                        \"result_status\": \"RECORD\",\n                        \"dob\": \"1950-08-08T00:00:00\",\n                        \"charges\": [\n                            {\n                                \"disposition\": \"GUILTY\",\n                                \"sentence\": \"\",\n                                \"sentence_suspended\": \"\",\n                                \"cost\": \"5\",\n                                \"probation\": \"\",\n                                \"restitution\": \"\",\n                                \"charge\": \"EXPIRED TAG\",\n                                \"charge_level\": \"MISDEMEANOR\",\n                                \"fines\": \"\",\n                                \"jail_time\": \"\",\n                                \"file_date\": \"\"\n                            },\n                            {\n                                \"disposition\": \"NOLLE PROSEQUI\",\n                                \"sentence\": \"\",\n                                \"sentence_suspended\": \"\",\n                                \"cost\": \"6.5\",\n                                \"probation\": \"\",\n                                \"restitution\": \"\",\n                                \"charge\": \"EXPIRED LICENSE  \",\n                                \"charge_level\": \"MISDEMEANOR\",\n                                \"fines\": \"\",\n                                \"jail_time\": \"\",\n                                \"file_date\": \"\"\n                            },\n                            {\n                                \"disposition\": \"NOLLE PROSEQUI\",\n                                \"sentence\": \"\",\n                                \"sentence_suspended\": \"\",\n                                \"cost\": \"7.5\",\n                                \"probation\": \"\",\n                                \"restitution\": \"\",\n                                \"charge\": \"WINDSHIELD/WIPER REQUIRED,DRIVER VIEW IMPAIRED\\t\",\n                                \"charge_level\": \"MISDEMEANOR\",\n                                \"fines\": \"\",\n                                \"jail_time\": \"\",\n                                \"file_date\": \"\"\n                            }\n                        ]\n                    },\n                    {\n                        \"first_name\": \"MICHELOB\",\n                        \"last_name\": \"JOHANNSEN\",\n                        \"middle_name\": \"\",\n                        \"hair_color\": \"\",\n                        \"disposition_date\": \"04/13/2006\",\n                        \"case_number\": \"05903123\",\n                        \"arrest_date\": \"\",\n                        \"status\": \"COMPLETE\",\n                        \"court\": \"SUPERIOR COURT\",\n                        \"offense_date\": \"08/24/2019\",\n                        \"county\": \"COBB\",\n                        \"records_found\": \"\",\n                        \"race\": \"\",\n                        \"result_status\": \"RECORD\",\n                        \"dob\": \"1950-08-08T00:00:00\",\n                        \"charges\": [\n                            {\n                                \"disposition\": \"NOT GUILTY\",\n                                \"sentence\": \"\",\n                                \"sentence_suspended\": \"\",\n                                \"cost\": \"\",\n                                \"probation\": \"\",\n                                \"restitution\": \"\",\n                                \"charge\": \"TERRORISTIC THREATS\\t\",\n                                \"charge_level\": \"FELONY\",\n                                \"fines\": \"\",\n                                \"jail_time\": \"\",\n                                \"file_date\": \"\"\n                            },\n                            {\n                                \"disposition\": \"NOT GUILTY\",\n                                \"sentence\": \"\",\n                                \"sentence_suspended\": \"\",\n                                \"cost\": \"\",\n                                \"probation\": \"\",\n                                \"restitution\": \"\",\n                                \"charge\": \"SIMPLE ASSAULT\",\n                                \"charge_level\": \"MISDEMEANOR\",\n                                \"fines\": \"\",\n                                \"jail_time\": \"\",\n                                \"file_date\": \"\"\n                            }\n                        ]\n                    }\n                ]\n            }\n        ]\n    },\n    \"driving_license_report\": {\n        \"status\": \"verified\",\n        \"date\": \"2019-01-01\",\n        \"record\": [\n            {\n                \"status\": \"VALID\",\n                \"class_description\": \"CLASS O OPERATOR ANY NON COMMERCIAL VEHICLES\",\n                \"issue_date\": \"2019-06-06\",\n                \"expiration_date\": \"2029-06-06\",\n                \"class_code\": \"O\",\n                \"original_issue_date\": \"N/A\",\n                \"type\" : \"PERSONAL\"\n            }\n        ],\n        \"events\": [\n            {\n                \"conviction_date\": \"2009-04-12\",\n                \"subtype\": \"VIOL\",\n                \"state\": \"NY\",\n                \"location\": \"SAN FRANCISCO\",\n                \"disposition\": \"N/A\",\n                \"date\": \"2019-01-01\",\n                \"docket_number\": \"N/A\",\n                \"charges\" : [\n                    {\n                        \"state_description\": \"OPERATED WHILE IMPAIRED BY LIQUOR\",\n                        \"avd1\": \"N/A\",\n                        \"acd\": \"N/A\",\n                        \"adr_large_description\": \"N/A\",\n                        \"state_code\": \"N/A\",\n                        \"state_assigned_points\": 4,\n                        \"adr_small_description\": \"FAILURE TO APPEAR\"\n                    }\n                ]\n            }\n        ]\n    },\n    \"drug_screening\" : {\n        \"status\": \"clear\",\n        \"date\": \"2019-01-01\",\n        \"name\" : \"5 Panel Drug Screening\",\n        \"commnet\" : \"comments\",\n        \"laboratory\" : \"Quest Diagnostics\",\n        \"specimen_id\" : \"TESTCCF2343242\",\n        \"certified_officer\" : \"David Nahin M.D.\",\n        \"case_id\" : \"drugscreening-0-HWFXT\",\n        \"check_code\" : \"drugs_5pan\",\n        \"date_filed\" : \"2019-08-29\",\n        \"results\" : [\n            {\n                \"drug\" : \"PHENCYCLIDINE PCP\",\n                \"result\" : \"Negative\"\n            },\n            {\n                \"drug\" : \"OPIATES\",\n                \"result\" : \"Negative\"\n            },\n            {\n                \"drug\" : \"MARIJUANA\",\n                \"result\" : \"Positive\"\n            },\n            {\n                \"drug\" : \"AMPHETAMINES\",\n                \"result\" : \"Negative\"\n            },\n            {\n                \"drug\" : \"COCAINE\",\n                \"result\" : \"Negative\"\n            }\n        ]\n    },\n    \"education_verification\": {\n        \"status\": \"verified\",\n        \"date\": \"2019-01-01\",\n        \"record\": [\n            {\n                \"status\": \"verified\",\n                \"school_name\": \"UNIVERSITY OF COLUMBUS\",\n                \"school_email\": \"REGISTRAR@COLUMBUSUNIV.EDU\",\n                \"school_fax\": \"855-212-4567\",\n                \"school_phone\": \"800-222-1234\",\n                \"school_street_address\": \"1100 UNIVERSITY AVE\",\n                \"school_city\": \"COLOMBUS\",\n                \"school_state\": \"OH\",\n                \"school_zip\": \"31345\",\n                \"graduated\": \"YES\",\n                \"person_contacted\": \"JUDY MILLER\",\n                \"attended_from\": \"2008-02-14\",\n                \"attended_to\": \"2011-08-11\",\n                \"degree\": {\n                    \"major\":\"Software Systems\",\n                    \"degree_name\":\"Bachelors\",\n                    \"degree_type\":\"Masters\",\n                    \"graduation_date\":\"2010-06-01\",\n                    \"degree_completed\":true\n                }\n            }\n        ]\n    },\n    \"employment_verification\": {\n        \"status\": \"verified\",\n        \"date\": \"2019-01-01\",\n        \"record\": [\n            {\n                \"status\": \"verified\",\n                \"employer_name\": \"ACME GENERAL, LTD\",\n                \"employer_email\": \"HUMANRESOURCES@ACMEGEN.COM\",\n                \"employer_street_address\": \"286 INDUSTRIAL RD\",\n                \"employer_city\": \"BOISE\",\n                \"employer_state\": \"ID\",\n                \"employer_zip\": \"45612\",\n                \"employer_phone\": \"800-555-7890\",\n                \"employer_fax\": \"234-123-1234\",\n                \"applicants_position\": \"ELECTRICIAN, III\",\n                \"person_contacted\": \"HENRY HAMILTON\",\n                \"reason_for_leaving\": \"CURRENT EMPLOYER\",\n                \"employed_from\": \"UNABLE TO VERIFY\"\n            }\n        ]\n    },\n    \"federal_criminal_search\": {\n        \"status\": \"clear\", \n        \"date\": \"2019-01-01\",\n        \"cases\": [\n            {\n                \"first_name\" : \"Jack\",\n                \"no_middle_name\" : true,\n                \"last_name\" : \"Flexer\",\n                \"disposition_date\" : \"2011-12-24\",\n                \"case_number\": \"4:2011-CR-00102\",\n                \"court\" : \"Northern District of Iowa\",\n                \"file_date\" : \"2011-08-24\",\n                \"charges\" : [\n                    {\n                        \"charge\" : \"MALICIOUS USE OF EXPLOSIVE MATERIALS\",\n                        \"charge_level\" : \"FELONY\",\n                        \"community_service\" : \"80 hours\",\n                        \"cost\" : \"100.00\",\n                        \"disposition\" : \"guilty\",\n                        \"other\" : \"2 YEARS SUPERVISED RELEASE, OBEY ALL LAWS, NO USE OR POSSESSION OF CONTROLLED SUBSTANCES, SUBMIT TO DRUG TESTS, NO FIREARMS, DNA COLLECTION, SUBMIT TO SEARCH;\",\n                        \"prison_time\" : \"15 months\"\n                    }\n                ]\n            }\n        ]\n    },\n    \"gsa_sam_search\": {\n        \"status\": \"clear\",  \n        \"date\": \"2019-01-01\",\n        \"records\": [\n            {\n                \"source\" : \"SECURITY WATCH LIST - EXCLUDED PARTIES LIST\"\n            }\n        ]\n    },\n    \"terrorist_watchlist_search\": {\n        \"status\": \"clear\",  \n        \"date\": \"2019-01-01\",\n        \"records\": [\n            {\n                \"source\" : \"SECURITY WATCH LIST - EXCLUDED PARTIES LIST\"\n            }\n        ]\n    },\n    \"licence_verification\": {\n        \"status\": \"clear\", \n        \"date\": \"2019-01-01\",\n        \"cases\": [\n            {\n                \"status\": \"clear\", \n                \"date\": \"2019-01-01\",\n                \"license_type\" : \"license type\",\n                \"certifying_body\" : \"certifying body name\"\n            }]\n    },\n    \"national_criminal_search\": {\n        \"status\": \"complete\",\n        \"date\": \"2019-01-01\"\n    },\n    \"oig_search\": {\n        \"status\": \"clear\",  \n        \"date\": \"2019-01-01\",\n        \"records\": [\n            {\n                \"source\" : \"SECURITY WATCH LIST - HH SERVICES EXCLUSION\"\n            }\n        ]\n    },\n    \"sex_offender_search\": {\n        \"status\": \"clear\",\n        \"date\": \"2019-01-01\",\n        \"records\": [\n            {\n                \"source\": \"New York\"\n            }\n        ]\n    },\n    \"ssn_trace\": {\n        \"status\": \"complete\",\n        \"date\": \"2019-01-01\"\n    },\n    \"state_criminal_search\": {\n\n        \"status\": \"Clear\",\n        \"date\": \"2025-03-05\",\n        \"search_details\": [\n            {\n                \"title\": \"John Doe - Gwinnett, GA\",\n                \"status\": \"Clear\",\n                \"scope\": 10,\n                \"ordered\": \"02/26/2025\",\n                \"eta\": \"11/23/2022\",\n                \"cases\": [\n                    {\n                        \"first_name\": \"John\",\n                        \"last_name\": \"Doe\",\n                        \"no_middle_name\": true,\n                        \"case_in_progress\": \"yes\",\n                        \"case_number\": \"3:2000-mj-00008\",\n                        \"state\": \"IN\",\n                        \"court\": \"Northern District of Iowa\",\n                        \"notes\": \"Complaint: Fraudulent possession of an identification document in violation of 18:1028(a)(4)\",\n                        \"file_date\": \"2000-01-03\",\n                        \"charges\": [\n                            {\n                                \"charge\": \"18:922(a)(1)(A).2 FIREARMS DEALING\",\n                                \"charge_id\": \"SC-0-CR-1909-0000728\",\n                                \"charge_in_progress\": \"yes\",\n                                \"charge_level\": \"FELONY\",\n                                \"disposition\": \"guilty\",\n                                \"next_court_date\": \"none\",\n                                \"other\": \"Charge Status: Pending| The defendant is hereby committed to the custody of the United States Bureau of Prisons to be imprisoned for a total term of 144 months. Upon release from imprisonment, the defendant shall be on supervised release for a term of 5 years.\"\n                            }\n                        ]\n                    }\n                ]\n            }\n        ]\n    },\n    \"id_check\": {\n        \"status\": \"clear\",\n        \"date\": \"2019-01-01\"\n    },\n    \"credit_check\": {\n        \"status\": \"clear\",\n        \"date\": \"2019-01-01\",\n        \"summary\" : [\n            {\n                \"type\": \"REVOLVING\",\n                \"high_credit\": \"4842\",\n                \"credit_limit\": \"5500\",\n                \"balance\": \"1901\",\n                \"past_due\": \"733\",\n                \"percentage_credit_available\": \"65\"\n            }\n        ],\n        \"inquires\" : [\n            {\n                \"inquiry_date\": \"2020-01-21\",\n                \"inquiry_type\": \"Individual\",\n                \"subscriber_name\": \"HART SFTWRE\",\n                \"industry_code\": \"Miscellaneous and public record\",\n                \"member_code\": \"00001010\",\n                \"bureau_submarket\": \"TR\",\n                \"bureau_market\": \"06\"\n            }\n        ],\n        \"messages\": [\n            {\n                \"message\": \"SSN associated with additional subject(s) not displayed/returned\"\n            }\n        ],\n        \"trades\": [\n            {\n                \"subscriber_name\": \"CBUSASEARS\",\n                \"subscriber_code\": \"D 06256367\",\n                \"date_opened\": \"2006-08-20\",\n                \"high_credit\": \"1500\",\n                \"credit_limit\": \"1500\",\n                \"collateral\": \"N/A\",\n                \"balance\": \"733\",\n                \"amount_past_due\": \"733\",\n                \"amount_of_payment\": \"230\",\n                \"account_number\": \"1230004586\",\n                \"account_type\": \"Installment account\",\n                \"loan_type\": \"Automibile\",\n                \"terms_frequency\": \"Monthly\",\n                \"terms_duration\": \"MIN\",\n                \"account_designator\": \"Individual account\",\n                \"mop\": \"I01\",\n                \"ecoa\": \"I\",\n                \"max_delinquency_amount\": \"296\",\n                \"max_delinquency_date\": \"2016-05-13\",\n                \"max_delinquency_mop\": \"03\",\n                \"times_90_days_late\": 0,\n                \"times_60_days_late\": 0,\n                \"times_30_days_late\": 0,\n                \"remarks\": \"N/A\",\n                \"payment_pattern_start_date\": \"2006-09-01\",\n                \"payment_pattern_1_to_12\": \"111111111111\",\n                \"payment_pattern_13_to_24\": \"111111111111\",\n                \"number_of_payments_past_due\": 0,\n                \"number_of_months_reviewed\": 24,\n                \"member_code\": \"06256367\",\n                \"date_paid_out\": \"N/A\",\n                \"date_of_last_activity\": \"N/A\",\n                \"date_closed_indicator\": \"N/A\",\n                \"date_closed\": \"N/A\",\n                \"current_manner_of_payment\": \"Paid or paying as agreed\",\n                \"currency\": \"United States currency\"\n            }\n        ]\n    },\n    \"reference_check\": {\n        \"status\": \"clear\", \n        \"date\": \"2019-01-01\",\n        \"references\": [\n            {\n                \"status\": \"clear\", \n                \"name\": \"Prince\",\n                \"phone\": \"4411111111\",\n                \"alternate_phone\": \"4411111111\",\n                \"email\": \"harmeet+10.hybrid.client@vetty.co\",\n                \"address\": {\n                    \"street\": \"123 Main St\",\n                    \"city\": \"New York\",\n                    \"state\": \"NY\",\n                    \"zipcode\": \"10011\"\n                }\n            }]\n    },\n    \"titers\": [\n        {\n            \"status\": \"Not Immune\",\n            \"date\": \"2023-05-10\",\n            \"name\": \"MMR Titer\",\n            \"comment\": \"\",\n            \"laboratory\": \"Quest Diagnostics\",\n            \"specimen_id\": \"4522\",\n            \"medical_review_officer\": \"David Nahin M.D.\",\n            \"date_filed\": \"2023-05-12\"\n        },\n        {\n            \"status\": \"Immune\",\n            \"date\": \"2023-05-10\",\n            \"name\": \"Varicella Titer\",\n            \"comment\": \"\",\n            \"laboratory\": \"Quest Diagnostics\",\n            \"specimen_id\": \"4522\",\n            \"medical_review_officer\": \"David Nahin M.D.\",\n            \"date_filed\": \"2023-05-18\"\n        },\n        {\n            \"status\": \"Immune\",\n            \"date\": \"2023-05-10\",\n            \"name\": \"Hepatitis B Surface AntiBody, Quantitative\",\n            \"comment\": \"\",\n            \"laboratory\": \"Quest Diagnostics\",\n            \"specimen_id\": \"74582\",\n            \"medical_review_officer\": \"David Nahin M.D.\",\n            \"date_filed\": \"2023-05-12\"\n        }\n    ],\n    \"drugs\": {\n        \"date\": \"2023-05-10\",\n        \"name\": \"10 Panel Drug\",\n        \"laboratory\": \"Quest Diagnostics\",\n        \"specimen_id\": \"74582\",\n        \"medical_review_officer\": \"David Nahin M.D.\",\n        \"date_filed\": \"2023-05-10\",\n        \"results\": [\n            {\n                \"drug\": \"PHENCYCLIDINE PCP\",\n                \"result\": \"Negative\"\n            },\n            {\n                \"drug\": \"OPIATES\",\n                \"result\": \"Positive\"\n            },\n            {\n                \"drug\": \"MARIJUANA\",\n                \"result\": \"Positive\"\n            },\n            {\n                \"drug\": \"AMPHETAMINES\",\n                \"result\": \"Negative\"\n            },\n            {\n                \"drug\": \"COCAINE\",\n                \"result\": \"Positive\"\n            },\n            {\n                \"drug\": \"Methaqualone\",\n                \"result\": \"Positive\"\n            },\n            {\n                \"drug\": \"Propoxyphene\",\n                \"result\": \"Positive\"\n            },\n            {\n                \"drug\": \"Benzodiazepines\",\n                \"result\": \"Negative\"\n            },\n            {\n                \"drug\": \"Methadone\",\n                \"result\": \"Negative\"\n            },\n            {\n                \"drug\": \"Barbiturates\",\n                \"result\": \"Positive\"\n            }\n        ]\n    },\n    \"vaccine\": {\n        \"status\": \"Vaccinated\",\n        \"date\": \"2023-05-10\",\n        \"name\": \"Hepatitis-B Vaccine\",\n        \"manufacturer\": \"\",\n        \"date_filed\": \"2023-05-12\",\n        \"expiry_date\": \"2023-05-19\"\n    },\n    \"mask_fit\": {\n        \"status\": \"Review Needed\",\n        \"date\": \"2023-05-10\",\n        \"comment\": \"\",\n        \"size\": \"4\",\n        \"result\": \"fail\",\n        \"date_filed\": \"2023-05-03\"\n    },\n    \"basic_physical\": {\n        \"status\": \"Review Needed\",\n        \"date\": \"2023-05-10\",\n        \"comment\": \"\",\n        \"result\": \"pass\",\n        \"date_filed\": \"2023-05-03\"\n    },\n    \"tb_skin_test\": {\n        \"status\": \"Review Needed\",\n        \"date\": \"2023-05-10\",\n        \"comment\": \"\",\n        \"date_filed\": \"2023-05-10\"\n    },\n    \"breath_alcohol\": {\n        \"status\": \"Review Needed\",\n        \"date\": \"2023-05-10\",\n        \"comment\": \"\",\n        \"result\": \"positive\"\n    },\n    \"vision_test\": {\n        \"status\": \"Review Needed\",\n        \"date\": \"2023-05-10\",\n        \"result\": \"Normal Color Vision\",\n        \"date_filed\": \"2023-05-10\"\n    }\n}\n"}],"_postman_id":"9c263e93-d428-4260-854c-b162a200c203"},{"name":"Reviewed","id":"357fdb30-e937-4c0a-92f9-7a54f147d068","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Authorization","type":"text","value":"Bearer {{access_token}}"},{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"status\": \"reviewed\"\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/cfapi/v1/screenings/{screening_id}","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"8f1a1d6b-81bf-48cc-a19f-f12fa57cc73d","id":"8f1a1d6b-81bf-48cc-a19f-f12fa57cc73d","name":"Vetty API","type":"collection"}},"urlObject":{"path":["cfapi","v1","screenings","{screening_id}"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"99a728dc-7264-4348-a8d9-5ebf74d9a2a3","name":"reviewed response","originalRequest":{"method":"PATCH","header":[{"key":"Authorization","type":"text","value":"Bearer {{access_token}}"},{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"status\": \"reviewed\"\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/cfapi/v1/screenings/{screening_id}"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"description":"","key":"Content-Type","type":"text","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": \"86f0972f-37be-462a-8e2d-bf9e0af7a05c\",\n  \"package_id\": \"93b5e486-32ab-4f32-8bbd-c713c44770a1\",\n  \"applicant_id\": \"3e4f84e3-9078-4451-a8b8-5897f4f4f4e3\",\n  \"status\": \"reviewed\"\n}"}],"_postman_id":"357fdb30-e937-4c0a-92f9-7a54f147d068"},{"name":"Get Applicant Checks","id":"99bda087-fd03-4053-a93f-eebd1b0c580a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}","type":"text"}],"url":"{{host}}/cfapi/v1/screenings/get_applicant_package/{screening_id}","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"8f1a1d6b-81bf-48cc-a19f-f12fa57cc73d","id":"8f1a1d6b-81bf-48cc-a19f-f12fa57cc73d","name":"Vetty API","type":"collection"}},"urlObject":{"path":["cfapi","v1","screenings","get_applicant_package","{screening_id}"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"19bb1c1c-842e-4267-ad13-b69fb776b2cb","name":"Get checklist for package assigned to the screening","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}","type":"text"}],"url":"{{host}}/cfapi/v1/screenings/get_applicant_package/{screening_id}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"code\": \"ssntrace\",\n        \"title\": \"Social Security Trace\"\n    },\n    {\n        \"code\": \"nationalcrim\",\n        \"title\": \"National Criminal Search\"\n    },\n    {\n        \"code\": \"sexof\",\n        \"title\": \"Sex Offender Registry Search\"\n    },\n    {\n        \"code\": \"crimcounty\",\n        \"title\": \"County Criminal Search\"\n    },\n    {\n        \"code\": \"statecrim\",\n        \"title\": \"State Criminal Search\"\n    },\n    {\n        \"code\": \"fedcrim\",\n        \"title\": \"Federal Criminal Search\"\n    },\n    {\n        \"code\": \"countycivil\",\n        \"title\": \"County Civil Search\"\n    },\n    {\n        \"code\": \"drivinglicense\",\n        \"title\": \"Motor Vehicle Records Search\"\n    },\n    {\n        \"code\": \"terroristwl\",\n        \"title\": \"Sanctions and Watchlist Search\"\n    },\n    {\n        \"code\": \"oig\",\n        \"title\": \"OIG Search\"\n    },\n    {\n        \"code\": \"gsa_sam\",\n        \"title\": \"GSA/SAM Search\"\n    },\n    {\n        \"code\": \"credit_check\",\n        \"title\": \"Credit Check\"\n    },\n    {\n        \"code\": \"edver\",\n        \"title\": \"Education Verification\"\n    },\n    {\n        \"code\": \"empver\",\n        \"title\": \"Employment History\"\n    },\n    {\n        \"code\": \"drugs_5pan\",\n        \"title\": \"Drug Test\"\n    },\n    {\n        \"code\": \"licenseveri\",\n        \"title\": \"License Verification\"\n    },\n    {\n        \"code\": \"Insuranceveri\",\n        \"title\": \"Insurance Verification\"\n    }\n]"}],"_postman_id":"99bda087-fd03-4053-a93f-eebd1b0c580a"},{"name":"Ala Carte List","id":"7aa70b65-b5e1-4345-917c-be209c33f81d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"url":"{{host}}/cfapi/v1/screenings/ala_cart_check_list?package_id={package_id}","description":"<p>For criminal checks such as national, state, and county criminal searches, you need to specify the aliases key with the value \"yes\" or \"no\" under the options section. The count of aliases to be run is specified with the key \"count\" and can have supported values of 3, 10, or All.</p>\n<p>To specify the number of verifications for education, employment, and reference checks, add the \"verification_count\" key under the options section. The supported values for this key are 1, 2, and 3.</p>\n","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"8f1a1d6b-81bf-48cc-a19f-f12fa57cc73d","id":"8f1a1d6b-81bf-48cc-a19f-f12fa57cc73d","name":"Vetty API","type":"collection"}},"urlObject":{"path":["cfapi","v1","screenings","ala_cart_check_list"],"host":["{{host}}"],"query":[{"key":"package_id","value":"{package_id}"}],"variable":[]}},"response":[{"id":"7a734ca2-f57b-45eb-83a3-dc48174951ef","name":"Ala Carte List","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"url":"{{host}}/cfapi/v1/screenings/ala_cart_check_list"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"ala_carte_check\": [\n        {\n            \"title\": \"Adult Abuse Registry\",\n            \"code\": \"adult_abuse\"\n        },\n        {\n            \"title\": \"Criminal County\",\n            \"code\": \"crimcounty\",\n            \"options\": {\n                \"aliases\": \"no\"\n            }\n        },\n        {\n            \"title\": \"Federal Criminal\",\n            \"code\": \"fedcrim\"\n        },\n        {\n            \"title\": \"Healthcare Sanctions Level 3\",\n            \"code\": \"facis_3\"\n        },\n        {\n            \"title\": \"National Criminal\",\n            \"code\": \"natcrim\",\n            \"options\": {\n                \"aliases\": \"no\"\n            }\n        },\n        {\n            \"title\": \"Driving Record\",\n            \"code\": \"drivrec\"\n        },\n        {\n            \"title\": \"Drug\",\n            \"code\": \"localized_drugs\",\n            \"options\": {\n                \"items_included\": [\n                    \"panel_10\"\n                ]\n            }\n        },\n        {\n            \"title\": \"Drug\",\n            \"code\": \"localized_drugs\",\n            \"options\": {\n                \"items_included\": [\n                    \"panel_10_alcohol\"\n                ]\n            }\n        },\n        {\n            \"title\": \"Drug\",\n            \"code\": \"localized_drugs\",\n            \"options\": {\n                \"items_included\": [\n                    \"panel_10_opiates\"\n                ]\n            }\n        },\n        {\n            \"title\": \"Drug\",\n            \"code\": \"localized_drugs\",\n            \"options\": {\n                \"items_included\": [\n                    \"panel_10_fen_oxy\"\n                ]\n            }\n        },\n        {\n            \"title\": \"Drug\",\n            \"code\": \"localized_drugs\",\n            \"options\": {\n                \"items_included\": [\n                    \"panel_10_Oxy_BuprenorphineMDMA_\"\n                ]\n            }\n        },\n        {\n            \"title\": \"Drug\",\n            \"code\": \"localized_drugs\",\n            \"options\": {\n                \"items_included\": [\n                    \"panel_10_mdma_oxy\"\n                ]\n            }\n        },\n        {\n            \"title\": \"Drug\",\n            \"code\": \"localized_drugs\",\n            \"options\": {\n                \"items_included\": [\n                    \"panel_10_FMOT\"\n                ]\n            }\n        },\n        {\n            \"title\": \"Drug\",\n            \"code\": \"localized_drugs\",\n            \"options\": {\n                \"items_included\": [\n                    \"panel_10_nicotine\"\n                ]\n            }\n        },\n        {\n            \"title\": \"Drug\",\n            \"code\": \"localized_drugs\",\n            \"options\": {\n                \"items_included\": [\n                    \"panel_4_Drug\"\n                ]\n            }\n        },\n        {\n            \"title\": \"Drug\",\n            \"code\": \"localized_drugs\",\n            \"options\": {\n                \"items_included\": [\n                    \"panel_5\"\n                ]\n            }\n        },\n        {\n            \"title\": \"Drug\",\n            \"code\": \"localized_drugs\",\n            \"options\": {\n                \"items_included\": [\n                    \"panel_7_proxyphene_Buprenorphine_OMMM\"\n                ]\n            }\n        },\n        {\n            \"title\": \"Drug\",\n            \"code\": \"localized_drugs\",\n            \"options\": {\n                \"items_included\": [\n                    \"panel_7\"\n                ]\n            }\n        },\n        {\n            \"title\": \"Drug\",\n            \"code\": \"localized_drugs\",\n            \"options\": {\n                \"items_included\": [\n                    \"panel_Drug_20sep\"\n                ]\n            }\n        },\n        {\n            \"title\": \"Drug\",\n            \"code\": \"localized_drugs\",\n            \"options\": {\n                \"items_included\": [\n                    \"panel_local_drug_anup\"\n                ]\n            }\n        },\n        {\n            \"title\": \"Instant Drug\",\n            \"code\": \"instant_drugs\",\n            \"options\": {\n                \"items_included\": [\n                    \"panel_10_insd\"\n                ]\n            }\n        },\n        {\n            \"title\": \"Instant Drug\",\n            \"code\": \"instant_drugs\",\n            \"options\": {\n                \"items_included\": [\n                    \"panel_5_insd\"\n                ]\n            }\n        },\n        {\n            \"title\": \"Titers\",\n            \"code\": \"ohs_titers\",\n            \"options\": {\n                \"items_included\": [\n                    \"total_antibody_hb\",\n                    \"hepatitis_a_\",\n                    \"hep_b_cat\",\n                    \"hepatitis_b_titer\",\n                    \"surface_Qualitative_HBA\",\n                    \"hep_b_saq\",\n                    \"hepatitis_c_antibody\",\n                    \"qgold_tb_blood\",\n                    \"mmr_titer\",\n                    \"varicella_titer\",\n                    \"manual12\",\n                    \"ohs_titerscheck2\",\n                    \"ohs_titerscheck3\"\n                ]\n            }\n        },\n        {\n            \"title\": \"Vaccine\",\n            \"code\": \"ohs_vaccine\",\n            \"options\": {\n                \"items_included\": [\n                    \"vaccinetest\",\n                    \"flu_vaccine\",\n                    \"vaccine_ohs_anup\",\n                    \"vaccine_feb29_\",\n                    \"hep_b_vaccine\",\n                    \"qmmr_vaccine\",\n                    \"vaccinetest_polio\",\n                    \"vaccinetest_rabies\",\n                    \"tdap_vaccine\",\n                    \"vaccine1_small_pox\",\n                    \"varicella_vaccine\"\n                ]\n            }\n        },\n        {\n            \"title\": \"Breath Alcohol Test\",\n            \"code\": \"breath_alcohol_test\"\n        },\n        {\n            \"title\": \"Chest X-Ray (Positive TB)\",\n            \"code\": \"chest_xray_postb\"\n        },\n        {\n            \"title\": \"Qualitative Mask Fit\",\n            \"code\": \"mask_fit\"\n        },\n        {\n            \"title\": \"TB Skin Test\",\n            \"code\": \"tb_skin_test\"\n        },\n        {\n            \"title\": \"Vision Ishihara\",\n            \"code\": \"vision_test\"\n        },\n        {\n            \"title\": \"COVID-19 Vaccination Tracker\",\n            \"code\": \"covid19_tracker\"\n        },\n        {\n            \"title\": \"Fingerprinting\",\n            \"code\": \"fingerprinting\"\n        },\n        {\n            \"title\": \"On-Site Drug Testing\",\n            \"code\": \"onsite_drugs\",\n            \"options\": {\n                \"items_included\": [\n                    \"vbc_panel_10\"\n                ]\n            }\n        },\n        {\n            \"title\": \"OIG Department of Health and Human Services\",\n            \"code\": \"oig\"\n        },\n        {\n            \"title\": \"GSA/SAM List\",\n            \"code\": \"gsa_sam\"\n        },\n        {\n            \"title\": \"Sex Offender\",\n            \"code\": \"sexof\"\n        },\n        {\n            \"title\": \"Terrorist Watchlist\",\n            \"code\": \"gstw\"\n        },\n        {\n            \"title\": \"Reference Verification\",\n            \"code\": \"refver\",\n            \"no_of_reference\": \"1\"\n        },\n        {\n            \"title\": \"Healthcare Licenses and Certifications\",\n            \"code\": \"healthcare_license\"\n        },\n        {\n            \"title\": \"UDC Delhi\",\n            \"code\": \"check3_udc\"\n        },\n        {\n            \"title\": \"Quantitative Mask Fit\",\n            \"code\": \"mask_fit_quant\"\n        },\n        {\n            \"title\": \"Mrunali Manual Check\",\n            \"code\": \"mrunali_manual_check\"\n        },\n        {\n            \"title\": \"State Criminal\",\n            \"code\": \"statecrim\",\n            \"options\": {\n                \"aliases\": \"no\"\n            }\n        },\n        {\n            \"title\": \"Education Verification\",\n            \"code\": \"edver\",\n            \"options\": {\n                \"verification_count\": \"1\"\n            }\n        },\n        {\n            \"title\": \"Employment Verification\",\n            \"code\": \"empver\",\n            \"options\": {\n                \"verification_count\": \"1\"\n            }\n        },\n        {\n            \"title\": \"FDA Debarment\",\n            \"code\": \"fda_debar\"\n        },\n        {\n            \"title\": \"Pa Patch\",\n            \"code\": \"pa_patch\"\n        },\n        {\n            \"title\": \"Child Abuse Registry - Pennsylvania\",\n            \"code\": \"child_abuse_pa\"\n        },\n        {\n            \"title\": \"Social Security Trace\",\n            \"code\": \"ssntrace\"\n        },\n        {\n            \"title\": \"Abuse Registry - Wisconsin\",\n            \"code\": \"abuse_wisconsin\"\n        },\n        {\n            \"title\": \"Colorado CAPS\",\n            \"code\": \"colorado_caps\"\n        },\n        {\n            \"title\": \"County Civil\",\n            \"code\": \"countycivil\"\n        },\n        {\n            \"title\": \"Federal Civil\",\n            \"code\": \"fedcivil\"\n        },\n        {\n            \"title\": \"ANP\",\n            \"code\": \"ANP\"\n        },\n        {\n            \"title\": \"3NovUDC\",\n            \"code\": \"3NovUDC\"\n        },\n        {\n            \"title\": \"Kiaaa Azron udcc\",\n            \"code\": \"KKKK\"\n        },\n        {\n            \"title\": \"UDC Mumbai\",\n            \"code\": \"check2_udc\"\n        },\n        {\n            \"title\": \"UDC New 3Nov\",\n            \"code\": \"UDC_New_3Nov\"\n        },\n        {\n            \"title\": \"Insurance Verification\",\n            \"code\": \"Insuranceveri\"\n        },\n        {\n            \"title\": \"License Verification\",\n            \"code\": \"licenseveri\"\n        },\n        {\n            \"title\": \"UDC All Check November1\",\n            \"code\": \"udc_November1_CA\"\n        },\n        {\n            \"title\": \"UDC All Check November2\",\n            \"code\": \"udc_November2_CA\"\n        },\n        {\n            \"title\": \"manual_check13\",\n            \"code\": \"manual_check13\"\n        },\n        {\n            \"title\": \"Test_TSPOT_TB\",\n            \"code\": \"Test_TSPOT_TB_pdAhA\"\n        },\n        {\n            \"title\": \"Rinu's Manual check \",\n            \"code\": \"check_manual_r\"\n        }\n    ]\n}"},{"id":"bb4bcb4f-d80d-40f1-a9b0-0621b51da356","name":"Ala Carte List with package constraints","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"url":{"raw":"{{host}}/cfapi/v1/screenings/ala_cart_check_list?package_id={package_id}","host":["{{host}}"],"path":["cfapi","v1","screenings","ala_cart_check_list"],"query":[{"key":"package_id","value":"{package_id}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"ala_carte_check\": [\n        {\n            \"title\": \"Adult Abuse Registry\",\n            \"code\": \"adult_abuse\"\n        },\n        {\n            \"title\": \"Criminal County\",\n            \"code\": \"crimcounty\",\n            \"options\": {\n                \"aliases\": \"no\"\n            }\n        },\n        {\n            \"title\": \"Federal Criminal\",\n            \"code\": \"fedcrim\"\n        },\n        {\n            \"title\": \"Healthcare Sanctions Level 3\",\n            \"code\": \"facis_3\"\n        },\n        {\n            \"title\": \"National Criminal\",\n            \"code\": \"natcrim\",\n            \"options\": {\n                \"aliases\": \"no\"\n            }\n        },\n        {\n            \"title\": \"Driving Record\",\n            \"code\": \"drivrec\"\n        },\n        {\n            \"title\": \"Drug\",\n            \"code\": \"localized_drugs\",\n            \"options\": {\n                \"items_included\": [\n                    \"panel_10\"\n                ]\n            }\n        },\n        {\n            \"title\": \"Drug\",\n            \"code\": \"localized_drugs\",\n            \"options\": {\n                \"items_included\": [\n                    \"panel_10_alcohol\"\n                ]\n            }\n        },\n        {\n            \"title\": \"Drug\",\n            \"code\": \"localized_drugs\",\n            \"options\": {\n                \"items_included\": [\n                    \"panel_10_opiates\"\n                ]\n            }\n        },\n        {\n            \"title\": \"Drug\",\n            \"code\": \"localized_drugs\",\n            \"options\": {\n                \"items_included\": [\n                    \"panel_10_fen_oxy\"\n                ]\n            }\n        },\n        {\n            \"title\": \"Drug\",\n            \"code\": \"localized_drugs\",\n            \"options\": {\n                \"items_included\": [\n                    \"panel_10_Oxy_BuprenorphineMDMA_\"\n                ]\n            }\n        },\n        {\n            \"title\": \"Drug\",\n            \"code\": \"localized_drugs\",\n            \"options\": {\n                \"items_included\": [\n                    \"panel_10_mdma_oxy\"\n                ]\n            }\n        },\n        {\n            \"title\": \"Drug\",\n            \"code\": \"localized_drugs\",\n            \"options\": {\n                \"items_included\": [\n                    \"panel_10_FMOT\"\n                ]\n            }\n        },\n        {\n            \"title\": \"Drug\",\n            \"code\": \"localized_drugs\",\n            \"options\": {\n                \"items_included\": [\n                    \"panel_10_nicotine\"\n                ]\n            }\n        },\n        {\n            \"title\": \"Drug\",\n            \"code\": \"localized_drugs\",\n            \"options\": {\n                \"items_included\": [\n                    \"panel_4_Drug\"\n                ]\n            }\n        },\n        {\n            \"title\": \"Drug\",\n            \"code\": \"localized_drugs\",\n            \"options\": {\n                \"items_included\": [\n                    \"panel_5\"\n                ]\n            }\n        },\n        {\n            \"title\": \"Drug\",\n            \"code\": \"localized_drugs\",\n            \"options\": {\n                \"items_included\": [\n                    \"panel_7_proxyphene_Buprenorphine_OMMM\"\n                ]\n            }\n        },\n        {\n            \"title\": \"Drug\",\n            \"code\": \"localized_drugs\",\n            \"options\": {\n                \"items_included\": [\n                    \"panel_7\"\n                ]\n            }\n        },\n        {\n            \"title\": \"Drug\",\n            \"code\": \"localized_drugs\",\n            \"options\": {\n                \"items_included\": [\n                    \"panel_Drug_20sep\"\n                ]\n            }\n        },\n        {\n            \"title\": \"Drug\",\n            \"code\": \"localized_drugs\",\n            \"options\": {\n                \"items_included\": [\n                    \"panel_local_drug_anup\"\n                ]\n            }\n        },\n        {\n            \"title\": \"Instant Drug\",\n            \"code\": \"instant_drugs\",\n            \"options\": {\n                \"items_included\": [\n                    \"panel_10_insd\"\n                ]\n            }\n        },\n        {\n            \"title\": \"Instant Drug\",\n            \"code\": \"instant_drugs\",\n            \"options\": {\n                \"items_included\": [\n                    \"panel_5_insd\"\n                ]\n            }\n        },\n        {\n            \"title\": \"Titers\",\n            \"code\": \"ohs_titers\",\n            \"options\": {\n                \"items_included\": [\n                    \"total_antibody_hb\",\n                    \"hepatitis_a_\",\n                    \"hep_b_cat\",\n                    \"hepatitis_b_titer\",\n                    \"surface_Qualitative_HBA\",\n                    \"hep_b_saq\",\n                    \"hepatitis_c_antibody\",\n                    \"qgold_tb_blood\",\n                    \"mmr_titer\",\n                    \"varicella_titer\",\n                    \"manual12\",\n                    \"ohs_titerscheck2\",\n                    \"ohs_titerscheck3\"\n                ]\n            }\n        },\n        {\n            \"title\": \"Vaccine\",\n            \"code\": \"ohs_vaccine\",\n            \"options\": {\n                \"items_included\": [\n                    \"vaccinetest\",\n                    \"flu_vaccine\",\n                    \"vaccine_ohs_anup\",\n                    \"vaccine_feb29_\",\n                    \"hep_b_vaccine\",\n                    \"qmmr_vaccine\",\n                    \"vaccinetest_polio\",\n                    \"vaccinetest_rabies\",\n                    \"tdap_vaccine\",\n                    \"vaccine1_small_pox\",\n                    \"varicella_vaccine\"\n                ]\n            }\n        },\n        {\n            \"title\": \"Breath Alcohol Test\",\n            \"code\": \"breath_alcohol_test\"\n        },\n        {\n            \"title\": \"Chest X-Ray (Positive TB)\",\n            \"code\": \"chest_xray_postb\"\n        },\n        {\n            \"title\": \"Qualitative Mask Fit\",\n            \"code\": \"mask_fit\"\n        },\n        {\n            \"title\": \"TB Skin Test\",\n            \"code\": \"tb_skin_test\"\n        },\n        {\n            \"title\": \"Vision Ishihara\",\n            \"code\": \"vision_test\"\n        },\n        {\n            \"title\": \"COVID-19 Vaccination Tracker\",\n            \"code\": \"covid19_tracker\"\n        },\n        {\n            \"title\": \"Fingerprinting\",\n            \"code\": \"fingerprinting\"\n        },\n        {\n            \"title\": \"On-Site Drug Testing\",\n            \"code\": \"onsite_drugs\",\n            \"options\": {\n                \"items_included\": [\n                    \"vbc_panel_10\"\n                ]\n            }\n        },\n        {\n            \"title\": \"OIG Department of Health and Human Services\",\n            \"code\": \"oig\"\n        },\n        {\n            \"title\": \"GSA/SAM List\",\n            \"code\": \"gsa_sam\"\n        },\n        {\n            \"title\": \"Sex Offender\",\n            \"code\": \"sexof\"\n        },\n        {\n            \"title\": \"Terrorist Watchlist\",\n            \"code\": \"gstw\"\n        },\n        {\n            \"title\": \"Reference Verification\",\n            \"code\": \"refver\",\n            \"no_of_reference\": \"1\"\n        },\n        {\n            \"title\": \"Healthcare Licenses and Certifications\",\n            \"code\": \"healthcare_license\"\n        },\n        {\n            \"title\": \"UDC Delhi\",\n            \"code\": \"check3_udc\"\n        },\n        {\n            \"title\": \"Quantitative Mask Fit\",\n            \"code\": \"mask_fit_quant\"\n        },\n        {\n            \"title\": \"Mrunali Manual Check\",\n            \"code\": \"mrunali_manual_check\"\n        },\n        {\n            \"title\": \"State Criminal\",\n            \"code\": \"statecrim\",\n            \"options\": {\n                \"aliases\": \"no\"\n            }\n        },\n        {\n            \"title\": \"Education Verification\",\n            \"code\": \"edver\",\n            \"options\": {\n                \"verification_count\": \"1\"\n            }\n        },\n        {\n            \"title\": \"Employment Verification\",\n            \"code\": \"empver\",\n            \"options\": {\n                \"verification_count\": \"1\"\n            }\n        },\n        {\n            \"title\": \"FDA Debarment\",\n            \"code\": \"fda_debar\"\n        },\n        {\n            \"title\": \"Pa Patch\",\n            \"code\": \"pa_patch\"\n        },\n        {\n            \"title\": \"Child Abuse Registry - Pennsylvania\",\n            \"code\": \"child_abuse_pa\"\n        },\n        {\n            \"title\": \"Social Security Trace\",\n            \"code\": \"ssntrace\"\n        },\n        {\n            \"title\": \"Abuse Registry - Wisconsin\",\n            \"code\": \"abuse_wisconsin\"\n        },\n        {\n            \"title\": \"Colorado CAPS\",\n            \"code\": \"colorado_caps\"\n        },\n        {\n            \"title\": \"County Civil\",\n            \"code\": \"countycivil\"\n        },\n        {\n            \"title\": \"Federal Civil\",\n            \"code\": \"fedcivil\"\n        },\n        {\n            \"title\": \"ANP\",\n            \"code\": \"ANP\"\n        },\n        {\n            \"title\": \"3NovUDC\",\n            \"code\": \"3NovUDC\"\n        },\n        {\n            \"title\": \"Kiaaa Azron udcc\",\n            \"code\": \"KKKK\"\n        },\n        {\n            \"title\": \"UDC Mumbai\",\n            \"code\": \"check2_udc\"\n        },\n        {\n            \"title\": \"UDC New 3Nov\",\n            \"code\": \"UDC_New_3Nov\"\n        },\n        {\n            \"title\": \"Insurance Verification\",\n            \"code\": \"Insuranceveri\"\n        },\n        {\n            \"title\": \"License Verification\",\n            \"code\": \"licenseveri\"\n        },\n        {\n            \"title\": \"UDC All Check November1\",\n            \"code\": \"udc_November1_CA\"\n        },\n        {\n            \"title\": \"UDC All Check November2\",\n            \"code\": \"udc_November2_CA\"\n        },\n        {\n            \"title\": \"manual_check13\",\n            \"code\": \"manual_check13\"\n        },\n        {\n            \"title\": \"Test_TSPOT_TB\",\n            \"code\": \"Test_TSPOT_TB_pdAhA\"\n        },\n        {\n            \"title\": \"Rinu's Manual check \",\n            \"code\": \"check_manual_r\"\n        }\n    ]\n}"}],"_postman_id":"7aa70b65-b5e1-4345-917c-be209c33f81d"}],"id":"d85dd669-4ea9-4d5c-aae2-935b71f28b1a","description":"<p>A screening is a background check on an application with a specific package. A screening consists of multiple reports based on the selected package. After a screening is created you can get the status of the screening by calling the <code>GET /v1/sreenings/{screening_id}</code> endpoint.</p>\n","_postman_id":"d85dd669-4ea9-4d5c-aae2-935b71f28b1a","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"8f1a1d6b-81bf-48cc-a19f-f12fa57cc73d","id":"8f1a1d6b-81bf-48cc-a19f-f12fa57cc73d","name":"Vetty API","type":"collection"}}},{"name":"Package","item":[{"name":"Retrive a package","id":"c1b5cc09-12c7-43db-a37c-30fbbd0646be","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"url":"{{host}}/cfapi/v1/packages/{package_id}?location=","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"8f1a1d6b-81bf-48cc-a19f-f12fa57cc73d","id":"8f1a1d6b-81bf-48cc-a19f-f12fa57cc73d","name":"Vetty API","type":"collection"}},"urlObject":{"path":["cfapi","v1","packages","{package_id}"],"host":["{{host}}"],"query":[{"key":"location","value":""}],"variable":[]}},"response":[{"id":"f4045d87-102d-4783-8218-adb2be0feb10","name":"Retrive a package","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"url":"{{host}}/cfapi/v1/packages/{package_id}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"76b5eby6-32ab-4f32-8b4g-c713c52770b3\",\n    \"name\": \"simple checks\",\n    \"price\": 67,\n    \"renewal_cost_per_year\": \"3\",\n    \"checks\" : [\n        {\n            \"name\": \"SSN Trace\",\n            \"code\": \"ssntrace\"\n        },\n        {\n            \"name\": \"National Criminal\",\n            \"code\": \"nationalcrim\"\n        }\n    ],\n    \"renewals\": [\n        {\n            \"name\": \"SSN Trace\",\n            \"code\": \"ssntrace\",\n            \"frequency\": 30\n        },\n        {\n            \"name\": \"National Criminal\",\n            \"code\": \"nationalcrim\",\n            \"frequency\": 30\n        }\n    ],\n    \"onboarding_docs\" : [\n        {\n            \"name\" : \"W9 Form\",\n            \"code\": \"w9_form\",\n            \"order\": 1\n        },\n        {\n            \"name\" : \"Paintzen Service Agreement\",\n            \"code\": \"service_agreement\",\n            \"order\": 2\n        }\n    ]\n}"},{"id":"26370595-dab2-49c6-97de-dd9e1b5193a8","name":"Retrive a package with location","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"url":{"raw":"{{host}}/cfapi/v1/packages/{package_id}?location=76b5eby6-32ab-4f32-8b4g-c713c52770b3","host":["{{host}}"],"path":["cfapi","v1","packages","{package_id}"],"query":[{"key":"location","value":"76b5eby6-32ab-4f32-8b4g-c713c52770b3"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"76b5eby6-32ab-4f32-8b4g-c713c52770b3\",\n    \"name\": \"simple checks\",\n    \"price\": 67,\n    \"renewal_cost_per_year\": \"3\",\n    \"checks\" : [\n        {\n            \"name\": \"SSN Trace\",\n            \"code\": \"ssntrace\"\n        },\n        {\n            \"name\": \"National Criminal\",\n            \"code\": \"nationalcrim\"\n        }\n    ],\n    \"renewals\": [\n        {\n            \"name\": \"SSN Trace\",\n            \"code\": \"ssntrace\",\n            \"frequency\": 30\n        },\n        {\n            \"name\": \"National Criminal\",\n            \"code\": \"nationalcrim\",\n            \"frequency\": 30\n        }\n    ],\n    \"onboarding_docs\" : [\n        {\n            \"name\" : \"W9 Form\",\n            \"code\": \"w9_form\",\n            \"order\": 1\n        },\n        {\n            \"name\" : \"Paintzen Service Agreement\",\n            \"code\": \"service_agreement\",\n            \"order\": 2\n        }\n    ]\n}"},{"id":"ec0397af-e36e-4a50-8d64-dbea7ee0b2c7","name":"Retrive a package with optional check","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"url":"{{host}}/cfapi/v1/packages/{package_id}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": \"76b5eby6-32ab-4f32-8b4g-c713c52770b3\",\n  \"name\": \"simple checks\",\n  \"price\": 67,\n  \"renewal_cost_per_year\": \"3\",\n  \"checks\": [\n    {\n      \"name\": \"SSN Trace\",\n      \"code\": \"ssntrace\"\n    },\n    {\n      \"name\": \"National Criminal\",\n      \"code\": \"nationalcrim\"\n    }\n  ],\n  \"optional_health_checks\": [\n    {\n      \"name\": \"TB Skin Test\",\n      \"code\": \"tb_skin_test\",\n      \"is_checked\": true,\n      \"is_disabled\": false\n    },\n    {\n      \"name\": \"Drug\",\n      \"code\": \"localized_drugs\",\n      \"is_checked\": true,\n      \"is_disabled\": false,\n      \"option_check\": [\n        {\n          \"name\": \"10 Panel Drug + Expanded Opiates\",\n          \"code\": \"panel_10_opiates\",\n          \"is_checked\": true\n        },\n        {\n          \"name\": \"10 Panel Drug + Alcohol\",\n          \"code\": \"panel_10_alcohol\",\n          \"is_checked\": true\n        },\n        {\n          \"name\": \"10 Panel Drug\",\n          \"code\": \"panel_10\",\n          \"is_checked\": true\n        },\n        {\n          \"name\": \"10 Panel + Buprenorphine+MDMA & Oxy\",\n          \"code\": \"panel_10_Oxy_BuprenorphineMDMA_\",\n          \"is_checked\": true\n        }\n      ]\n    },\n    {\n      \"name\": \"Basic Physical\",\n      \"code\": \"basic_physical\",\n      \"is_checked\": true,\n      \"is_disabled\": false\n    },\n    {\n      \"name\": \"Titers\",\n      \"code\": \"ohs_titers\",\n      \"is_checked\": true,\n      \"is_disabled\": false,\n      \"option_check\": [\n        {\n          \"name\": \"Blood Draw Collection\",\n          \"code\": \"blood_draw_collection\",\n          \"is_checked\": true,\n          \"is_hidden\": false\n        },\n        {\n          \"name\": \"Hepatitis B Surface AntiBody, Quantitative\",\n          \"code\": \"hepatitis_b_titer\",\n          \"is_checked\": true,\n          \"is_hidden\": false\n        },\n        {\n          \"name\": \"Hepatitis B Core Antibody, Total\",\n          \"code\": \"hep_b_cat\",\n          \"is_checked\": true,\n          \"is_hidden\": false\n        }\n      ]\n    }\n  ],\n  \"renewals\": [\n    {\n      \"name\": \"SSN Trace\",\n      \"code\": \"ssntrace\",\n      \"frequency\": 30\n    },\n    {\n      \"name\": \"National Criminal\",\n      \"code\": \"nationalcrim\",\n      \"frequency\": 30\n    }\n  ],\n  \"onboarding_docs\": [\n    {\n      \"name\": \"W9 Form\",\n      \"code\": \"w9_form\",\n      \"order\": 1\n    },\n    {\n      \"name\": \"Paintzen Service Agreement\",\n      \"code\": \"service_agreement\",\n      \"order\": 2\n    }\n  ]\n}"}],"_postman_id":"c1b5cc09-12c7-43db-a37c-30fbbd0646be"},{"name":"Get all packages","id":"9ab19d2b-96a9-4b59-be1c-ef034370a9c9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"url":"{{host}}/cfapi/v1/packages?location=","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"8f1a1d6b-81bf-48cc-a19f-f12fa57cc73d","id":"8f1a1d6b-81bf-48cc-a19f-f12fa57cc73d","name":"Vetty API","type":"collection"}},"urlObject":{"path":["cfapi","v1","packages"],"host":["{{host}}"],"query":[{"key":"location","value":""}],"variable":[]}},"response":[{"id":"3e63d753-46d0-41f4-b1fc-32450b990c36","name":"Get all packages","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"url":"{{host}}/cfapi/v1/packages"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": \"76b5eby6-32ab-4f32-8b4g-c713c52770b3\",\n        \"name\": \"simple checks\",\n        \"price\": 67,\n        \"renewal_cost_per_year\": \"3\",\n        \"checks\" : [\n            {\n                \"name\": \"SSN Trace\",\n                \"code\": \"ssntrace\"\n            },\n            {\n                \"name\": \"National Criminal\",\n                \"code\": \"nationalcrim\"\n            }\n        ],\n        \"renewals\": [\n            {\n                \"name\": \"SSN Trace\",\n                \"code\": \"ssntrace\",\n                \"frequency\": 30\n            },\n            {\n                \"name\": \"National Criminal\",\n                \"code\": \"nationalcrim\",\n                \"frequency\": 30\n            }\n        ],\n        \"extra_docs\" : [\n            {\n                \"name\" : \"W9 Form\",\n                \"code\": \"w9_form\",\n                \"order\": 1\n            },\n            {\n                \"name\" : \"Paintzen Service Agreement\",\n                \"code\": \"service_agreement\",\n                \"order\": 2\n            }\n        ]\n    }\n]"},{"id":"82c85891-c337-4d37-8634-0f1a6935f467","name":"Get all packages with location","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"url":{"raw":"{{host}}/cfapi/v1/packages?location=76b5eby6-32ab-4f32-8b4g-c713c52770b3","host":["{{host}}"],"path":["cfapi","v1","packages"],"query":[{"key":"location","value":"76b5eby6-32ab-4f32-8b4g-c713c52770b3"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": \"76b5eby6-32ab-4f32-8b4g-c713c52770b3\",\n        \"name\": \"simple checks\",\n        \"price\": 67,\n        \"renewal_cost_per_year\": \"3\",\n        \"checks\" : [\n            {\n                \"name\": \"SSN Trace\",\n                \"code\": \"ssntrace\"\n            },\n            {\n                \"name\": \"National Criminal\",\n                \"code\": \"nationalcrim\"\n            }\n        ],\n        \"renewals\": [\n            {\n                \"name\": \"SSN Trace\",\n                \"code\": \"ssntrace\",\n                \"frequency\": 30\n            },\n            {\n                \"name\": \"National Criminal\",\n                \"code\": \"nationalcrim\",\n                \"frequency\": 30\n            }\n        ],\n        \"extra_docs\" : [\n            {\n                \"name\" : \"W9 Form\",\n                \"code\": \"w9_form\",\n                \"order\": 1\n            },\n            {\n                \"name\" : \"Paintzen Service Agreement\",\n                \"code\": \"service_agreement\",\n                \"order\": 2\n            }\n        ]\n    }\n]"}],"_postman_id":"9ab19d2b-96a9-4b59-be1c-ef034370a9c9"}],"id":"e4524244-16f7-444b-96d7-686c51f12145","_postman_id":"e4524244-16f7-444b-96d7-686c51f12145","description":"","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"8f1a1d6b-81bf-48cc-a19f-f12fa57cc73d","id":"8f1a1d6b-81bf-48cc-a19f-f12fa57cc73d","name":"Vetty API","type":"collection"}}},{"name":"Cost Center","item":[{"name":"Get all cost centers","id":"84f753dd-086b-4ac2-acaa-212f3fe954d1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{access_token}}"},{"key":"Content-Type","type":"text","value":"application/json"}],"url":"{{host}}/cfapi/v1/cost-centers","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"8f1a1d6b-81bf-48cc-a19f-f12fa57cc73d","id":"8f1a1d6b-81bf-48cc-a19f-f12fa57cc73d","name":"Vetty API","type":"collection"}},"urlObject":{"path":["cfapi","v1","cost-centers"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"9d7b48ab-4e9b-4c58-b8db-d7647ab84ad3","name":"Get all cost centers","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"url":"{{host}}/cfapi/v1/cost-centers"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": \"76b5eby6-32ab-4f32-8b4g-c713c52770b3\",\n        \"name\": \"Operations\",\n        \"parent_cost_center_id\" : null,\n        \"is_leaf\" : false\n    },\n    {\n        \"id\": \"5fb5eby6-32ab-4f32-8b4g-c713c52fyse7\",\n        \"name\": \"Accounting\",\n        \"parent_cost_center_id\" : \"76b5eby6-32ab-4f32-8b4g-c713c52770b3\",\n        \"is_leaf\" : true\n    },\n    {\n        \"id\": \"h375eby6-32ab-4f32-hr7s-c713c52j73fm\",\n        \"name\": \"Software\",\n        \"parent_cost_center_id\" : \"76b5eby6-32ab-4f32-8b4g-c713c52770b3\",\n        \"is_leaf\" : true\n    }\n]"}],"_postman_id":"84f753dd-086b-4ac2-acaa-212f3fe954d1"}],"id":"7b84bdc8-151f-4236-8b59-913bb9baae86","description":"<p>The location (cost center) attribute represents the organizational unit or category associated with an order. . Locations can be added via this API.</p>\n","event":[{"listen":"prerequest","script":{"id":"530a53c9-7efa-42ef-abde-08c37f9cba94","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"28fb5c3f-0971-462f-835c-4570637326b6","type":"text/javascript","exec":[""]}}],"_postman_id":"7b84bdc8-151f-4236-8b59-913bb9baae86","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"8f1a1d6b-81bf-48cc-a19f-f12fa57cc73d","id":"8f1a1d6b-81bf-48cc-a19f-f12fa57cc73d","name":"Vetty API","type":"collection"}}},{"name":"Department","item":[{"name":"Get all department","id":"6f79aed1-798d-4718-b2a7-4a56c85d6264","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"url":"{{host}}/cfapi/v1/department","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"8f1a1d6b-81bf-48cc-a19f-f12fa57cc73d","id":"8f1a1d6b-81bf-48cc-a19f-f12fa57cc73d","name":"Vetty API","type":"collection"}},"urlObject":{"path":["cfapi","v1","department"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"121ea00e-da3b-4b98-93b2-2d05d0b8305d","name":"Get all department","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"url":"{{host}}/cfapi/v1/department"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": \"676282953bb5575af291acf3\",\n        \"name\": \"talent acquisition\"\n    },\n    {\n        \"id\": \"676298d85f66389af7bc7199\",\n        \"name\": \"qa department\"\n    },\n    {\n        \"id\": \"676298f3cb9f4ebe8701bb96\",\n        \"name\": \"prod department\"\n    },\n    {\n        \"id\": \"676299168ece164ef09ce1eb\",\n        \"name\": \"dev department\"\n    }\n]"}],"_postman_id":"6f79aed1-798d-4718-b2a7-4a56c85d6264"}],"id":"3f31f1ce-c674-46dc-b01c-36b8df2e022a","description":"<p>The department attribute represents the organizational unit or category associated with an order. By default, each order is assigned to the 'Talent Acquisition' department. Additional departments can be added via the API and assigned to orders as needed to reflect different organizational units.</p>\n","event":[{"listen":"prerequest","script":{"id":"530a53c9-7efa-42ef-abde-08c37f9cba94","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"28fb5c3f-0971-462f-835c-4570637326b6","type":"text/javascript","exec":[""]}}],"_postman_id":"3f31f1ce-c674-46dc-b01c-36b8df2e022a","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"8f1a1d6b-81bf-48cc-a19f-f12fa57cc73d","id":"8f1a1d6b-81bf-48cc-a19f-f12fa57cc73d","name":"Vetty API","type":"collection"}}},{"name":"Adverse/Pre-adverse","item":[{"name":"Get adverse items","id":"f026bff4-d8f7-4846-bcb3-373bec5562c3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{access_token}}"},{"key":"Content-Type","type":"text","value":"application/json"}],"url":"{{host}}/cfapi/v1/screenings/{screening_id}/adverse-items","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"8f1a1d6b-81bf-48cc-a19f-f12fa57cc73d","id":"8f1a1d6b-81bf-48cc-a19f-f12fa57cc73d","name":"Vetty API","type":"collection"}},"urlObject":{"path":["cfapi","v1","screenings","{screening_id}","adverse-items"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"0f014c48-a8c5-4a89-bf74-2bdb8c66d726","name":"adverse items response","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"url":"{{host}}/cfapi/v1/screenings/{screening_id}/adverse-items"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    // id (event_id), case_id, check, description\n    \"id\": \"86f0972f-37be-462a-8e2d-bf9e0af7a05c\", // event_id\n    \"case_id\" : \"86f0972f-37be-462a-8e2d-bf9e0af7a05c\",\n    \"check\" : \"MVR\",\n    \"description\" : \"event description\",\n    \"status\" : \"dispute\",\n    \"dispute_reason\" : \"reason for dispute\",\n    \"dispute_document_ids\" : [\"3416c43h-37be-6yxh-8e2d-6yxe0af7634v\"]\n  }\n]"}],"_postman_id":"f026bff4-d8f7-4846-bcb3-373bec5562c3"},{"name":"Dispute","id":"ec9f025d-451f-4dce-9b54-0ac0e408af7b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{access_token}}"},{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"id\" : \"86f0972f-37be-462a-8e2d-bf9e0af7a05c\",\n    \"dispute_reason\" : \"reason for dispute\",\n    \"dispute_document_ids\" : [\"3416c43h-37be-6yxh-8e2d-6yxe0af7634v\"]\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/cfapi/v1/screenings/{screening_id}/adverse-items/{adverse_item_id}/dispute","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"8f1a1d6b-81bf-48cc-a19f-f12fa57cc73d","id":"8f1a1d6b-81bf-48cc-a19f-f12fa57cc73d","name":"Vetty API","type":"collection"}},"urlObject":{"path":["cfapi","v1","screenings","{screening_id}","adverse-items","{adverse_item_id}","dispute"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"6b86ef75-eb87-4000-9b0a-71b4724f7194","name":"dispute response","originalRequest":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{access_token}}"},{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"dispute_reason\" : \"reason for dispute\",\n    \"dispute_document_ids\" : [\"3416c43h-37be-6yxh-8e2d-6yxe0af7634v\"]\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/cfapi/v1/screenings/{screening_id}/adverse-items/{adverse_item_id}/dispute"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"description":"","key":"Content-Type","type":"text","value":"application/json"}],"cookie":[],"responseTime":null,"body":"  {\n    \"id\": \"86f0972f-37be-462a-8e2d-bf9e0af7a05c\",\n    \"case_id\" : \"86f0972f-37be-462a-8e2d-bf9e0af7a05c\",\n    \"check\" : \"MVR\",\n    \"description\" : \"event description\",\n    \"status\" : \"dispute\",\n    \"dispute_reason\" : \"reason for dispute\",\n    \"dispute_document_ids\" : [\"3416c43h-37be-6yxh-8e2d-6yxe0af7634v\"]\n  }"}],"_postman_id":"ec9f025d-451f-4dce-9b54-0ac0e408af7b"},{"name":"Pre-adverse Actions","id":"bdef73b3-8e0f-4d62-a689-70711e25d0d4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{access_token}}"},{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"adverse_item_ids\": [\n        \"86f0972f-37be-462a-8e2d-bf9e0af7a05c\"\n    ],\n    \"supporting_documents\": [\n        \"64affc75fb301d7e0c4cfeef\",\n        \"64b00112fb301d7e0c4d06d9\",\n        \"64d1e9e029cce6a3f6221f68\"\n    ],\n    \"body\": \"<you can add your custom email template>\"\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/cfapi/v1/screenings/{screening_id}/pre-adverse-actions","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"8f1a1d6b-81bf-48cc-a19f-f12fa57cc73d","id":"8f1a1d6b-81bf-48cc-a19f-f12fa57cc73d","name":"Vetty API","type":"collection"}},"urlObject":{"path":["cfapi","v1","screenings","{screening_id}","pre-adverse-actions"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"fff98493-ce8a-44ed-90c2-08e4225c1222","name":"pre-adverse actions response","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{access_token}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"adverse_item_ids\": [\r\n        \"86f0972f-37be-462a-8e2d-bf9e0af7a05c\"\r\n    ],\r\n    \"supporting_documents\": [\r\n        \"64affc75fb301d7e0c4cfeef\",\r\n        \"64b00112fb301d7e0c4d06d9\",\r\n        \"64d1e9e029cce6a3f6221f68\"\r\n    ],\r\n    \"body\": \"<you can add your custom email template>\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/cfapi/v1/screenings/{screening_id}/pre-adverse-actions"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": \"62fd0972f-37be-43as-8e2d-bf9e0af7d4hc\",\n  \"adverse_item_ids\" : [\"86f0972f-37be-462a-8e2d-bf9e0af7a05c\"]\n}"}],"_postman_id":"bdef73b3-8e0f-4d62-a689-70711e25d0d4"},{"name":"Adverse Actions","id":"c7e4d133-7b5f-4c8d-9b09-a50ad0e6ba40","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{access_token}}"},{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n    \"supporting_documents\": [\r\n        \"64affc75fb301d7e0c4cfeef\",\r\n        \"64b00112fb301d7e0c4d06d9\",\r\n        \"64d1e9e029cce6a3f6221f68\"\r\n    ],\r\n    \"body\": \"<you can add your custom email template>\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/cfapi/v1/screenings/{screening_id}/adverse-action","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"8f1a1d6b-81bf-48cc-a19f-f12fa57cc73d","id":"8f1a1d6b-81bf-48cc-a19f-f12fa57cc73d","name":"Vetty API","type":"collection"}},"urlObject":{"path":["cfapi","v1","screenings","{screening_id}","adverse-action"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"5578993a-f49e-4073-86b9-f757ee4e46e7","name":"adverse action response","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{access_token}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"supporting_documents\": [\r\n        \"64affc75fb301d7e0c4cfeef\",\r\n        \"64b00112fb301d7e0c4d06d9\",\r\n        \"64d1e9e029cce6a3f6221f68\"\r\n    ],\r\n    \"body\": \"<you can add your custom email template>\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/cfapi/v1/screenings/{screening_id}/adverse-action"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": \"d56h0972f-65sg-d4fn-gd3f-bf9e0af7rd3f\"\n}"}],"_postman_id":"c7e4d133-7b5f-4c8d-9b09-a50ad0e6ba40"}],"id":"5909c82c-2e75-4d81-98c1-4fb84b34c313","_postman_id":"5909c82c-2e75-4d81-98c1-4fb84b34c313","description":"","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"8f1a1d6b-81bf-48cc-a19f-f12fa57cc73d","id":"8f1a1d6b-81bf-48cc-a19f-f12fa57cc73d","name":"Vetty API","type":"collection"}}},{"name":"Healthcare Licenses and Certifications","item":[{"name":"Get Healthcare License List","id":"4f10ea18-cbde-4c78-becb-b077620717d2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{access_token}}"},{"key":"Content-Type","type":"text","value":"application/json"}],"url":"{{host}}/cfapi/v1/client/get_allowed_licenses","description":"<p>Healthcare licenses list shows all the allocated licenses for your clients account on Vetty. If no licenses returned please contact Vetty support.</p>\n","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"8f1a1d6b-81bf-48cc-a19f-f12fa57cc73d","id":"8f1a1d6b-81bf-48cc-a19f-f12fa57cc73d","name":"Vetty API","type":"collection"}},"urlObject":{"path":["cfapi","v1","client","get_allowed_licenses"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"44017109-b92a-4e49-bfed-1b171270e414","name":"Get Healthcare License List","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{access_token}}"},{"key":"Content-Type","type":"text","value":"application/json"}],"url":"{{host}}/cfapi/v1/client/get_allowed_licenses"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\r\n    \"healthcare_licenses\": [\r\n        {\r\n            \"license_code\": \"acupuncturist_license\",\r\n            \"license_name\": \"Acupuncturist License\"\r\n        },\r\n        {\r\n            \"license_code\": \"electrologist_license\",\r\n            \"license_name\": \"Electrologist License\"\r\n        }\r\n    ]\r\n}"},{"id":"d54650a3-ea36-4192-a7e7-d7e9d835a3c3","name":"Get Healthcare License List - No License Allocated","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{access_token}}"},{"key":"Content-Type","type":"text","value":"application/json"}],"url":"{{host}}/cfapi/v1/client/get_allowed_licenses"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\r\n    \"message\": \"No License List Allocated for the client.\"\r\n}"}],"_postman_id":"4f10ea18-cbde-4c78-becb-b077620717d2"}],"id":"74f431ed-46b8-410d-b0d4-9603477d8c79","_postman_id":"74f431ed-46b8-410d-b0d4-9603477d8c79","description":"","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"8f1a1d6b-81bf-48cc-a19f-f12fa57cc73d","id":"8f1a1d6b-81bf-48cc-a19f-f12fa57cc73d","name":"Vetty API","type":"collection"}}}],"id":"375158b6-044c-4f31-b2d9-8f3f01fccd49","_postman_id":"375158b6-044c-4f31-b2d9-8f3f01fccd49","description":"","auth":{"type":"bearer","bearer":{},"isInherited":true,"source":{"_postman_id":"8f1a1d6b-81bf-48cc-a19f-f12fa57cc73d","id":"8f1a1d6b-81bf-48cc-a19f-f12fa57cc73d","name":"Vetty API","type":"collection"}}}],"auth":{"type":"bearer","bearer":{}}}