{"info":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","description":"<html><head></head><body><p><strong>TazAPI Advanced</strong> (Version 2) is a collection of RESTful APIs providing background screening services. The API can also manage Consumer Reporting Agency (CRA) resources. TazAPI Basic (version 1) can be found <a href=\"https://tazworks.com/api/api-v1/\">here</a>.</p>\n<h5 id=\"register\">Register:</h5>\n<ol>\n<li><p><a href=\"https://developer.tazworks.com/pages/signup\">Register</a> for an account in the Developer Portal</p>\n</li>\n<li><p>Create an application</p>\n</li>\n<li><p>Obtain an API token</p>\n</li>\n</ol>\n<h5 id=\"create-a-background-check\">Create a Background Check:</h5>\n<ol>\n<li><p>Use the API sandbox - <a href=\"https://api-sandbox.instascreen.net\">https://api-sandbox.instascreen.net</a></p>\n</li>\n<li><p><a href=\"#c47ce9ef-cd06-4d6d-92c1-fe90a9c4c469\">Choose a client</a></p>\n</li>\n<li><p><a href=\"#29146a6f-07cd-4440-91be-2c8a0c79e6de\">Choose a Product</a> (Client Products for Order)</p>\n</li>\n<li><p><a href=\"#61f355d3-bf8a-4909-88d5-e486228394e5\">Create an applicant</a></p>\n</li>\n<li><p><a href=\"#8a0ecd1d-496d-46b7-b45c-a26553bf5a49\">Place background check</a> (Submit Order)</p>\n</li>\n</ol>\n<h5 id=\"make-your-life-easier\">Make Your Life Easier:</h5>\n<ol>\n<li><p><a href=\"https://www.postman.com/downloads/\">Get Postman</a></p>\n</li>\n<li><p>Click</p>\n <img src=\"https://run.pstmn.io/button.svg\" alt=\"Run in Postman\">\n </li>\n<li><p>Set environment variables</p>\n<ul>\n<li><p>{host} = <a href=\"https://api-sandbox.instascreen.net\">https://api-sandbox.instascreen.net</a> (API sandbox)</p>\n</li>\n<li><p>{jwt-token} = your.application.token</p>\n</li>\n</ul>\n</li>\n<li><p>Issue API requests</p>\n</li>\n</ol>\n<h1 id=\"authentication\">Authentication</h1>\n<p>A valid <a href=\"https://en.wikipedia.org/wiki/JSON_Web_Token\">JSON Web Token</a> (JWT) must be included in the Authorization header of each API request. Get an API token from a registered <a href=\"https://docs.developer.tazworks.com/?version=latest#applications\">API Application</a>. All requests must use the HTTPS scheme with Bearer Authentication.</p>\n<h1 id=\"developer-portal\">Developer Portal</h1>\n<p><a href=\"https://developer.tazworks.com/pages/signup\">Register</a> for an account in the Developer Portal to obtain API tokens and manage <a href=\"https://docs.developer.tazworks.com/?version=latest#applications\">API applications</a> (test and production). In the Developer Portal, a sample API application exists to execute API requests within a sandbox environment.</p>\n<h1 id=\"test-applicants\">Test Applicants</h1>\n<p>Instascreen provides two test applicants that can be used for testing purposes. When used in a production environment, no charges will be incurred.</p>\n<p>The test applicants are identified by their social security numbers. Canned results will be returned. These test applicants work with most search types.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>SSN</strong></td>\n<td>111-22-3333</td>\n</tr>\n<tr>\n<td><strong>First Name</strong></td>\n<td>Joe</td>\n</tr>\n<tr>\n<td><strong>Last Name</strong></td>\n<td>Clean</td>\n</tr>\n<tr>\n<td><strong>Results</strong></td>\n<td>Clear / Good Results</td>\n</tr>\n<tr>\n<td>---</td>\n<td>---</td>\n</tr>\n<tr>\n<td><strong>SSN</strong></td>\n<td>333-22-1111</td>\n</tr>\n<tr>\n<td><strong>First Name</strong></td>\n<td>Hank</td>\n</tr>\n<tr>\n<td><strong>Last Name</strong></td>\n<td>Mess</td>\n</tr>\n<tr>\n<td><strong>Results</strong></td>\n<td>Records / Bad Results</td>\n</tr>\n</tbody>\n</table>\n</div><h1 id=\"applications\">Applications</h1>\n<p>All API interactions begin with an API application. An API application specifies which API endpoints can be used and provides access to CRA resources. In addition, API tokens are generated from an application. Applications are created in the <a href=\"https://developer.tazworks.com/pages/login\">TazAPI Developer Portal</a>.</p>\n<h1 id=\"clients\">Clients</h1>\n<p>The TazAPI serves many Consumer Reporting Agencies (CRA). CRAs offer background screening services to various clients. A client identifier (GUID) is required for most API endpoints. To get a list of clients and their identifier use the <strong>All Clients</strong> endpoint.</p>\n<h1 id=\"responses\">Responses</h1>\n<p>All responses will be in JSON format. Each response will contain a valid HTTP status code.</p>\n<h3 id=\"error-responses\">Error Responses</h3>\n<p>All error responses will contain a <code>code</code> and a <code>message</code>. The <code>code</code> is for programmatic handling of the error. The <code>message</code> field will contain a readable explanation of the issue to help you resolve the issue. The error response may also contain an optional <code>fields</code> list of specific fields and the error messages related to those fields. In the case of the <code>fields</code> being used, the <code>message</code> may be left blank, as the field contains the specific error messages.</p>\n<p>Example of an error message without field-specific errors.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n\"code\": \"RESOURCE_NOT_FOUND\",\n\"message\": \"Client with the given identifier could not be found.\"}\n\n</code></pre><p>Example of an error response containing field-specific errors.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n\"code\": \"VALIDATION_EXCEPTION\",\n\"message\": null,\n\"fields\": {\n    \"copySections\": [\n        \"Please define the copySections that you want copied from another client.  The options are FEES, BILLING, PREFERENCES, PRODUCTS, and DISCLOSURES.\"\n    ],\n    \"copyClientGuid\": [\n        \"A client could not be found with this identifier.\"\n    ]\n}}\n\n</code></pre><h1 id=\"data-format\">Data Format</h1>\n<h3 id=\"dates\">Dates</h3>\n<p>Whenever time is included in a date, we will use <a href=\"https://en.wikipedia.org/wiki/Unix_time\">Epoch</a> time, or the number of miliseconds since January 1, 1970, 00:00:00 GMT.</p>\n<p>When time is not included in dates (e.g., when providing the start date of employment), the date should be a string in yyyy-MM-dd format.</p>\n<h3 id=\"phone-numbers\">Phone Numbers</h3>\n<p>Unless otherwise specified, all phone and fax numbers should be formatted as (###) ###-####. Phone number extensions are a string and can be preceeded by an 'x' (e.g., 1234, x1234).</p>\n<h1 id=\"rate-limiting\">Rate Limiting</h1>\n<p>Each application has throttling and usage limits. If these limits are exceeded, an HTTP 429 response code will be returned with a JSON-formatted response.</p>\n<h3 id=\"limits\">Limits</h3>\n<ul>\n<li><p>5 requests per second, with a burst throttle limit of 10 requests per second</p>\n</li>\n<li><p>20,000 requests per day</p>\n</li>\n</ul>\n<p>A request may be submitted for an increase should these limits prove insufficient for high-load API application instances. Contact API Support with your request.</p>\n<h1 id=\"custom-interface\">Custom Interface</h1>\n<p>If you'd like to create your own interface for communicating with our API, these are some things you should consider:</p>\n<ul>\n<li><p>how to define the credentials to use</p>\n</li>\n<li><p>how to add the required authorization token</p>\n</li>\n<li><p>how to select the action to perform</p>\n</li>\n<li><p>how to provide the JSON data required for that action</p>\n</li>\n<li><p>how to capture the success and error responses</p>\n</li>\n</ul>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"Authentication","slug":"authentication"},{"content":"Developer Portal","slug":"developer-portal"},{"content":"Test Applicants","slug":"test-applicants"},{"content":"Applications","slug":"applications"},{"content":"Clients","slug":"clients"},{"content":"Responses","slug":"responses"},{"content":"Data Format","slug":"data-format"},{"content":"Rate Limiting","slug":"rate-limiting"},{"content":"Custom Interface","slug":"custom-interface"}],"owner":"32697839","collectionId":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","publishedId":"2sB3BGH9bv","public":true,"customColor":{"top-bar":"f9f9f9","right-sidebar":"0066a3","highlight":"90ce4d"},"publishDate":"2026-02-05T18:45:59.000Z"},"item":[{"name":"Orders","item":[{"name":"Applicants","item":[{"name":"Licenses","item":[{"name":"Create License","event":[{"listen":"test","script":{"id":"9f04ae22-6c97-4cd3-9335-7dd16d51a968","exec":[""],"type":"text/javascript"}}],"id":"bfccd421-ee1b-471d-a9ee-c651f08c928d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n        \"licenseGuid\": null,\n        \"licenseType\": \"PROFESSIONAL\",\n        \"stateOfIssue\": \"ME\",\n        \"licenseNumber\": \"1012-B\",\n        \"certificationType\": \"Nursing\",\n        \"validateLicenseFormat\": false,\n        \"status\": \"active\",\n        \"motorVehicleHistory\": null\n    }"},"url":"https://{{host}}/v1/clients/{{client-guid}}/applicants/{{applicant-guid}}/licenses","description":"<p><strong>Order API</strong></p>\n<p>Create a new applicant license.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>licenseGuid</strong> <em>uuid</em></td>\n<td>The identifier for the license.</td>\n</tr>\n<tr>\n<td><strong>licenseType</strong> <em>required, string</em></td>\n<td>This refers to the type of search this license is for. Valid types are <em>INSTANT_DRIVER</em>, <em>PROFESSIONAL</em>, and <em>HEALTHCARE_COMPLIANCE</em>.</td>\n</tr>\n<tr>\n<td><strong>stateOfIssue</strong> <em>string</em></td>\n<td>The two character string identifying the state of the issue for the license.</td>\n</tr>\n<tr>\n<td><strong>licenseNumber</strong> <em>string</em></td>\n<td>The license number.</td>\n</tr>\n<tr>\n<td><strong>certificationType</strong> <em>string</em></td>\n<td>For professional licenses, specify the kind of license or certification that this license represents.</td>\n</tr>\n<tr>\n<td><strong>validateLicenseFormat</strong> <em>boolean</em></td>\n<td>Set to false to prevent validation of the license number. This defaults to true. See <strong>License Formats</strong> for a list of the valid formats.</td>\n</tr>\n<tr>\n<td><strong>status</strong> <em>string</em></td>\n<td>The status of the license.</td>\n</tr>\n<tr>\n<td><strong>motorVehicleHistory</strong> <em>string</em></td>\n<td>For instant driver records, some states allow you to define the motor vehicle history to apply.</td>\n</tr>\n</tbody>\n</table>\n</div><p>Read Only Fields</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>createdDate</strong> <em>date (long)</em></td>\n<td>The epoch date that the record was created.</td>\n</tr>\n<tr>\n<td><strong>createdBy</strong> <em>string</em></td>\n<td>The user who created the record.</td>\n</tr>\n<tr>\n<td><strong>modifiedDate</strong> <em>date (long)</em></td>\n<td>The epoch date that the record was last modified.</td>\n</tr>\n<tr>\n<td><strong>modifiedBy</strong> <em>string</em></td>\n<td>The user who last modified the record.</td>\n</tr>\n<tr>\n<td><strong>version</strong> <em>long</em></td>\n<td>The version associated with the record.</td>\n</tr>\n</tbody>\n</table>\n</div><p>Valid <code>motorVehicleHistory</code> values:</p>\n<ul>\n<li>THREE_YEARS</li>\n<li>FIVE_YEARS</li>\n<li>SEVEN_YEARS</li>\n<li>TEN_YEARS</li>\n<li>FIVE_YEARS_CDL</li>\n<li>SEVEN_YEARS_CDL</li>\n<li>TEN_YEARS_CDL</li>\n<li>EMPLOYMENT</li>\n<li>UNLIMITED</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}","applicants","{{applicant-guid}}","licenses"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"072d48a8-5022-4f49-906d-451ad7c74c27","name":"Invalid License Format","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"licenseGuid\": null,\n    \"licenseType\": \"INSTANT_DRIVER\",\n    \"stateOfIssue\": \"MN\",\n    \"licenseNumber\": \"10009b\",\n    \"validateLicenseFormat\": false,\n    \"status\": \"active\"\n}","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients/{{client-guid}}/applicants/{{applicant-guid}}/licenses"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": \"VALIDATION_EXCEPTION\",\n    \"message\": \"The provided drivers license number is in the wrong format for MN state.  Minnesota is 1 Alpha plus 12 Numeric characters.\"\n}"},{"id":"4b4aeaa5-aca8-48cd-8113-31e100050198","name":"Professional License","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n        \"licenseGuid\": null,\n        \"licenseType\": \"PROFESSIONAL\",\n        \"stateOfIssue\": \"ME\",\n        \"licenseNumber\": \"12345678\",\n        \"certificationType\": \"Welding\",\n        \"status\": \"active\"\n    }","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients/{{client-guid}}/applicants/{{applicant-guid}}/licenses"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n        \"licenseGuid\": \"3109509a-8d24-4d91-b8d2-dae0e47d7804\",\n        \"licenseType\": \"PROFESSIONAL\",\n        \"stateOfIssue\": \"ME\",\n        \"licenseNumber\": \"12345678\",\n        \"certificationType\": \"Welding\",\n        \"validateLicenseFormat\": true,\n        \"status\": \"active\",\n        \"createdDate\": 1572883498000,\n        \"createdBy\": \"October Application October Integrator\",\n        \"modifiedDate\": 1572884356000,\n        \"modifiedBy\": \"October Application October Integrator\",\n        \"version\": 1\n    }"},{"id":"b4d1dbfe-ca47-4d97-a307-148606c7bb7b","name":"Instant Driver License with History","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"licenseGuid\": null,\n    \"licenseType\": \"INSTANT_DRIVER\",\n    \"stateOfIssue\": \"OR\",\n    \"licenseNumber\": \"AB345 69\",\n    \"motorVehicleHistory\": \"THREE_YEARS\",\n    \"validateLicenseFormat\": false,\n    \"status\": \"active\"\n}","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients/{{client-guid}}/applicants/{{applicant-guid}}/licenses"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n        \"licenseGuid\": \"3109509a-8d24-4d91-b8d2-dae0e47d7804\",\n        \"licenseType\": \"INSTANT_DRIVER\",\n        \"stateOfIssue\": \"OR\",\n        \"licenseNumber\": \"AB345 69\",\n        \"motorVehicleHistory\": \"THREE_YEARS\",\n        \"validateLicenseFormat\": false,\n        \"status\": \"active\",\n        \"createdDate\": 1572883498000,\n        \"createdBy\": \"October Application October Integrator\",\n        \"modifiedDate\": 1572884356000,\n        \"modifiedBy\": \"October Application October Integrator\",\n        \"version\": 1\n    }"},{"id":"fd2e0254-0ed3-4630-8f8b-6a9b02d19820","name":"Healthcare License","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n        \"licenseGuid\": null,\n        \"licenseType\": \"HEALTHCARE_COMPLIANCE\",\n        \"stateOfIssue\": \"NB\",\n        \"licenseNumber\": \"1012-B\",\n        \"certificationType\": \"Nursing\",\n        \"status\": \"active\"\n    }","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients/{{client-guid}}/applicants/{{applicant-guid}}/licenses"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"licenseGuid\": \"3109509a-8d24-4d91-b8d2-dae0e47d7804\",\n    \"licenseType\": \"HEALTHCARE_COMPLIANCE\",\n    \"stateOfIssue\": \"NB\",\n    \"licenseNumber\": \"1012-B\",\n    \"certificationType\": \"Nursing\",\n    \"validateLicenseFormat\": true,\n    \"status\": \"active\",\n    \"createdDate\": 1572883498000,\n    \"createdBy\": \"October Application October Integrator\",\n    \"modifiedDate\": 1572884356000,\n    \"modifiedBy\": \"October Application October Integrator\",\n    \"version\": 1\n}"}],"_postman_id":"bfccd421-ee1b-471d-a9ee-c651f08c928d"},{"name":"License Formats","id":"1dc739fa-d05a-4083-b432-8156263e81b3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/applicants/licenseformats","description":"<p><strong>Order API</strong></p>\n<p>Get a list of the valid license formats by state.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>state</strong> string</td>\n<td>Two character abbreviation for the state</td>\n</tr>\n<tr>\n<td><strong>licenseFormat</strong> string</td>\n<td>Description for how licenses are formatted for this state</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}","applicants","licenseformats"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"27430d32-da8c-4d49-b4b4-f8b493cf7e17","name":"License Formats","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/applicants/licenseformats"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"state\": \"DE\",\n        \"licenseFormat\": \"Delaware is 1 to 7 Numeric characters.\"\n    },\n    {\n        \"state\": \"HI\",\n        \"licenseFormat\": \"Hawaii is 9 Numeric -or- the Alpha character \\\"H\\\" plus 8 Numeric.\"\n    },\n    {\n        \"state\": \"PR\",\n        \"licenseFormat\": \"Puerto Rico is 5-7 Numeric or 9 Numeric characters.\"\n    },\n    {\n        \"state\": \"TX\",\n        \"licenseFormat\": \"Texas is 8 Numeric characters.\"\n    }\n]"}],"_postman_id":"1dc739fa-d05a-4083-b432-8156263e81b3"},{"name":"All Licenses","event":[{"listen":"test","script":{"id":"15db18f4-9e5a-42d6-b15b-383f37e395a8","exec":[""],"type":"text/javascript"}}],"id":"b38b4933-71b6-476f-a44a-f4a9f2149f70","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/applicants/{{applicant-guid}}/licenses","description":"<p><strong>Order API</strong></p>\n<p>Get a list of all the licenses for an applicant.</p>\n<p>See <strong>Create License</strong> for field descriptions.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}","applicants","{{applicant-guid}}","licenses"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"659d6064-bffc-4fd2-8031-d4836d4d41f2","name":"All Licenses","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/applicants/{{applicant-guid}}/licenses"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n\t{\n        \"licenseGuid\": \"0dd09d46-ce0d-4052-b676-eb2622a963f3\",\n        \"licenseType\": \"INSTANT_DRIVER\",\n        \"stateOfIssue\": \"KY\",\n        \"licenseNumber\": \"FOO-WU\",\n        \"status\": \"active\",\n        \"createdDate\": 1555349254000,\n        \"createdBy\": \"Client Foo\",\n        \"modifiedDate\": 1555349254000,\n        \"modifiedBy\": \"Client Foo\",\n        \"version\": 1\n    },\n    {\n        \"licenseGuid\": \"fb3341df-625e-4147-9ef0-eac462f3cdae\",\n        \"licenseType\": \"HEALTHCARE_COMPLIANCE\",\n        \"stateOfIssue\": \"NB\",\n        \"licenseNumber\": \"800-EIFI\",\n        \"status\": \"expired\",\n        \"createdDate\": 1555349277000,\n        \"createdBy\": \"Client Foo\",\n        \"modifiedDate\": 1555349325000,\n        \"modifiedBy\": \"Client Foo\",\n        \"version\": 2\n    }\n]"}],"_postman_id":"b38b4933-71b6-476f-a44a-f4a9f2149f70"},{"name":"Single License","event":[{"listen":"test","script":{"id":"af68ea38-b33a-48ef-b904-7a619bce254f","exec":[""],"type":"text/javascript"}}],"id":"5567a130-3c0b-430d-935e-e03e4546880e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/applicants/{{applicant-guid}}/licenses/{{license-guid}}","description":"<p><strong>Order API</strong></p>\n<p>Get information about a specific applicant license.</p>\n<p>See <strong>Create License</strong> for field descriptions.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}","applicants","{{applicant-guid}}","licenses","{{license-guid}}"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"4d67ee20-bc3a-4a83-a6a5-4c24204bd33f","name":"Single License","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/applicants/{{applicant-guid}}/licenses/{{license-guid}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n        \"licenseGuid\": \"0dd09d46-ce0d-4052-b676-eb2622a963f3\",\n        \"licenseType\": \"PROFESSIONAL\",\n        \"stateOfIssue\": \"KY\",\n        \"licenseNumber\": \"FOO-WU\",\n        \"certificationType\": \"Nursing\",\n        \"status\": \"active\",\n        \"createdDate\": 1555349254000,\n        \"createdBy\": \"Client Foo\",\n        \"modifiedDate\": 1555349254000,\n        \"modifiedBy\": \"Client Foo\",\n        \"version\": 1\n    }"}],"_postman_id":"5567a130-3c0b-430d-935e-e03e4546880e"},{"name":"Update License","event":[{"listen":"test","script":{"id":"7638f8c5-95bf-47ee-b4ef-31c42c99f67f","exec":[""],"type":"text/javascript"}}],"id":"dde5cfbb-dfb8-4ef7-a2b0-55ec4b4ba41b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"licenseGuid\": \"{{license-guid}}\",\n    \"licenseType\": \"INSTANT_DRIVER\",\n    \"stateOfIssue\": \"TN\",\n    \"licenseNumber\": \"10009b\",\n    \"status\": \"suspended\"\n}"},"url":"https://{{host}}/v1/clients/{{client-guid}}/applicants/{{applicant-guid}}/licenses/{{license-guid}}","description":"<p><strong>Order API</strong></p>\n<p>Update an applicant license. Do a <strong>GET</strong> call and then update the model for the fields you want changed.</p>\n<p>See <strong>Create License</strong> for field descriptions.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}","applicants","{{applicant-guid}}","licenses","{{license-guid}}"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"90954fc3-e818-4c34-882f-c872d9044b09","name":"Update License","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n        \"licenseGuid\": \"0dd09d46-ce0d-4052-b676-eb2622a963f3\",\n        \"licenseType\": \"INSTANT_DRIVER\",\n        \"stateOfIssue\": \"KY\",\n        \"licenseNumber\": \"FOO-WU\",\n        \"status\": \"suspended\"\n    }","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients/{{client-guid}}/applicants/{{applicant-guid}}/licenses/{{license-guid}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n        \"licenseGuid\": \"0dd09d46-ce0d-4052-b676-eb2622a963f3\",\n        \"licenseType\": \"INSTANT_DRIVER\",\n        \"stateOfIssue\": \"KY\",\n        \"licenseNumber\": \"FOO-WU\",\n        \"status\": \"suspended\",\n        \"createdDate\": 1555349254000,\n        \"createdBy\": \"Client Foo\",\n        \"modifiedDate\": 1555349254000,\n        \"modifiedBy\": \"Client Foo\",\n        \"version\": 2\n    }"}],"_postman_id":"dde5cfbb-dfb8-4ef7-a2b0-55ec4b4ba41b"},{"name":"Delete License","event":[{"listen":"test","script":{"id":"5c6ca99f-b704-45b5-8f7c-4b5e75c628ac","exec":[""],"type":"text/javascript"}}],"id":"1a5edc81-004d-4225-bbfb-d64abf2b19df","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/applicants/{{applicant-guid}}/licenses/{{license-guid}}","description":"<p><strong>Order API</strong></p>\n<p>Delete an applicant license.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}","applicants","{{applicant-guid}}","licenses","{{license-guid}}"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"ebdc30a8-042f-455d-8219-3fef7e7dffb4","name":"Delete License","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/applicants/{{applicant-guid}}/licenses/{{license-guid}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"\"License has been deleted.\""}],"_postman_id":"1a5edc81-004d-4225-bbfb-d64abf2b19df"}],"id":"e514728a-a05a-47fd-90a3-dc21d11feb70","description":"<p>Endpoints allowing you to create, update, and delete an applicant's professional licenses.</p>\n","event":[{"listen":"prerequest","script":{"id":"f7ea035c-b81f-4d79-a61d-931681659be3","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"c0e2a9fa-016d-43a6-87cf-9c4a2d8b4b02","type":"text/javascript","exec":[""]}}],"_postman_id":"e514728a-a05a-47fd-90a3-dc21d11feb70","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}}},{"name":"References","item":[{"name":"Create Reference","event":[{"listen":"test","script":{"id":"8e9ddc3e-d13b-47fe-b01d-b8c9679647e5","exec":[""],"type":"text/javascript"}}],"id":"cc223a2b-988a-45d4-adee-39be9638b7e6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"referenceGuid\": null,\n    \"fullName\": \"Bugsy Malone\",\n    \"relationship\": \"Uncle\",\n    \"phone\": \"(555) 555-3334\",\n    \"email\": \"api-sandbox@tazworks.com\",\n    \"fax\": \"(555) 999-2929\",\n    \"comments\": \"Don't mess with Bugsy.  He gets mean.\"\n}"},"url":"https://{{host}}/v1/clients/{{client-guid}}/applicants/{{applicant-guid}}/references","description":"<p><strong>Order API</strong></p>\n<p>Create a new applicant reference.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>referenceGuid</strong> <em>uuid</em></td>\n<td>The identifier for the reference.</td>\n</tr>\n<tr>\n<td><strong>referenceType</strong> <em>string</em></td>\n<td>The reference type: GENERAL, PERSONAL, PROFESSIONAL. This will default to GENERAL.</td>\n</tr>\n<tr>\n<td><strong>fullName</strong> <em>required, string</em></td>\n<td>The full name of the reference.</td>\n</tr>\n<tr>\n<td><strong>relationship</strong> <em>string</em></td>\n<td>The relationship of the reference.</td>\n</tr>\n<tr>\n<td><strong>phone</strong> <em>string</em></td>\n<td>The phone number for the reference. The number should follow a <code>(###) ###-####</code> format.</td>\n</tr>\n<tr>\n<td><strong>email</strong> <em>string</em></td>\n<td>The email for the reference. This needs to be a valid email format.</td>\n</tr>\n<tr>\n<td><strong>fax</strong> <em>string</em></td>\n<td>The fax number for the reference. The fax should follow a <code>(###) ###-####</code> format.</td>\n</tr>\n<tr>\n<td><strong>comments</strong> <em>string</em></td>\n<td>Any comments.</td>\n</tr>\n</tbody>\n</table>\n</div><p>Read Only Fields</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>createdDate</strong> <em>date (long)</em></td>\n<td>The epoch date that the record was created.</td>\n</tr>\n<tr>\n<td><strong>createdBy</strong> <em>string</em></td>\n<td>The user who created the record.</td>\n</tr>\n<tr>\n<td><strong>modifiedDate</strong> <em>date (long)</em></td>\n<td>The epoch date that the record was last modified.</td>\n</tr>\n<tr>\n<td><strong>modifiedBy</strong> <em>string</em></td>\n<td>The user who last modified the record.</td>\n</tr>\n<tr>\n<td><strong>version</strong> <em>long</em></td>\n<td>The version associated with the record.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}","applicants","{{applicant-guid}}","references"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"2cdf2e06-135e-4566-998c-738a88664834","name":"Create Reference","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n        \"referenceGuid\": null,\n        \"referenceType\": \"GENERAL\",\n        \"fullName\": \"Elmer Fudd\",\n        \"relationship\": \"Uncle\",\n        \"phone\": null,\n        \"email\": \"api-sandbox@tazworks.com\",\n        \"fax\": null,\n        \"comments\": \"he hunts rabbits\"\n    }","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients/{{client-guid}}/applicants/{{applicant-guid}}/references"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n        \"referenceGuid\": \"238939aa-800d-42ce-88bc-191ebaf6f4a5\",\n        \"referenceType\": \"GENERAL\",\n        \"fullName\": \"Elmer Fudd\",\n        \"relationship\": \"Uncle\",\n        \"email\": \"api-sandbox@tazworks.com\",\n        \"comments\": \"he hunts rabbits\",\n        \"createdDate\": 1555084063000,\n        \"createdBy\": \"Client Foo\",\n        \"modifiedDate\": 1555084063000,\n        \"modifiedBy\": \"Sally Foo\",\n        \"version\": 3\n    }"}],"_postman_id":"cc223a2b-988a-45d4-adee-39be9638b7e6"},{"name":"All References","event":[{"listen":"test","script":{"id":"1f7d6b3e-5869-4246-9e72-b207163a534a","exec":[""],"type":"text/javascript"}}],"id":"898e4d69-c842-45aa-9914-43fa0dde16d1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/applicants/{{applicant-guid}}/references","description":"<p><strong>Order API</strong></p>\n<p>Get a list of all the references for an applicant.</p>\n<p>See <strong>Create Reference</strong> for field descriptions.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}","applicants","{{applicant-guid}}","references"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"1a73ff8e-5718-4b74-80ab-503147f15a89","name":"All References","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/applicants/{{applicant-guid}}/references"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"referenceGuid\": \"238939aa-800d-42ce-88bc-191ebaf6f4a5\",\n        \"referenceType\": \"GENERAL\",\n        \"fullName\": \"Elmer Fudd\",\n        \"relationship\": \"Uncle\",\n        \"email\": \"api-sandbox@tazworks.com\",\n        \"comments\": \"he hunts rabbits\",\n        \"createdDate\": 1555084063000,\n        \"createdBy\": \"Client Foo\",\n        \"modifiedDate\": 1555084063000,\n        \"modifiedBy\": \"Sally Foo\",\n        \"version\": 1\n    },\n    {\n        \"referenceGuid\": \"602d0185-b904-4840-9214-1c7fa9c62d80\",\n        \"referenceType\": \"PERSONAL\",\n        \"fullName\": \"Bugsy Malone\",\n        \"relationship\": \"Uncle\",\n        \"phone\": \"(797) 456-3334\",\n        \"email\": \"api-sandbox@tazworks.com\",\n        \"fax\": \"(777) 999-2929\",\n        \"comments\": \"Don't mess with Bugsy.  He gets mean.\",\n        \"createdDate\": 1555353957000,\n        \"createdBy\": \"Client Foo\",\n        \"modifiedDate\": 1555353957000,\n        \"modifiedBy\": \"Sally Foo\",\n        \"version\": 1\n    }\n]"}],"_postman_id":"898e4d69-c842-45aa-9914-43fa0dde16d1"},{"name":"Single Reference","event":[{"listen":"test","script":{"id":"6756c602-e5b2-4807-80fb-7f97b161a3c0","exec":[""],"type":"text/javascript"}}],"id":"c6c3911e-8608-46e0-9f5e-554c091d6923","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/applicants/{{applicant-guid}}/references/{{reference-guid}}","description":"<p><strong>Order API</strong></p>\n<p>Get information about a specific applicant reference.</p>\n<p>See <strong>Create Reference</strong> for field descriptions.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}","applicants","{{applicant-guid}}","references","{{reference-guid}}"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"917f09da-d8d9-4668-84c3-442544510ee4","name":"Single Reference","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/applicants/{{applicant-guid}}/references/{{reference-guid}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n        \"referenceGuid\": \"238939aa-800d-42ce-88bc-191ebaf6f4a5\",\n        \"referenceType\": \"PERSONAL\",\n        \"fullName\": \"Elmer Fudd\",\n        \"relationship\": \"Uncle\",\n        \"email\": \"api-sandbox@tazworks.com\",\n        \"comments\": \"he hunts rabbits\",\n        \"createdDate\": 1555084063000,\n        \"createdBy\": \"Client Foo\",\n        \"modifiedDate\": 1555084063000,\n        \"modifiedBy\": \"Sally Foo\",\n        \"version\": 1\n    }"}],"_postman_id":"c6c3911e-8608-46e0-9f5e-554c091d6923"},{"name":"Update Reference","event":[{"listen":"test","script":{"id":"61d8cc73-1c4c-4fda-a091-5baed7fe007a","exec":[""],"type":"text/javascript"}}],"id":"f1080a79-c277-4c01-8eea-d5a71a4346b8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"referenceGuid\": {{reference-guid}},\n    \"fullName\": \"Bugsy Malone\",\n    \"relationship\": \"Uncle\",\n    \"phone\": \"(555) 555-3334\",\n    \"email\": \"api-sandbox@tazworks.com\",\n    \"fax\": \"(555) 999-2929\",\n    \"comments\": \"Don't mess with Bugsy.  He gets mean.\"\n}"},"url":"https://{{host}}/v1/clients/{{client-guid}}/applicants/{{applicant-guid}}/references/{{reference-guid}}","description":"<p><strong>Order API</strong></p>\n<p>Update the reference of an applicant. Do a <strong>GET</strong> call and then update the model for the fields you want changed.</p>\n<p>See <strong>Create Reference</strong> for field descriptions.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}","applicants","{{applicant-guid}}","references","{{reference-guid}}"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"d2fe078f-5c46-4613-b7be-a167c19304b0","name":"Update Reference","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n        \"referenceGuid\": \"238939aa-800d-42ce-88bc-191ebaf6f4a5\",\n        \"fullName\": \"Elmer Fudd\",\n        \"relationship\": \"Uncle\",\n        \"phone\": null,\n        \"email\": \"api-sandbox@tazworks.com\",\n        \"fax\": null,\n        \"comments\": \"he hunts rabbits\"\n    }","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients/{{client-guid}}/applicants/{{applicant-guid}}/references/{{reference-guid}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n        \"referenceGuid\": \"238939aa-800d-42ce-88bc-191ebaf6f4a5\",\n        \"referenceType\": \"PERSONAL\",\n        \"fullName\": \"Elmer Fudd\",\n        \"relationship\": \"Uncle\",\n        \"email\": \"api-sandbox@tazworks.com\",\n        \"comments\": \"he hunts rabbits\",\n        \"createdDate\": 1555084063000,\n        \"createdBy\": \"Client Foo\",\n        \"modifiedDate\": 1555084063000,\n        \"modifiedBy\": \"Sally Foo\",\n        \"version\": 1\n    }"}],"_postman_id":"f1080a79-c277-4c01-8eea-d5a71a4346b8"},{"name":"Delete Reference","event":[{"listen":"test","script":{"id":"d9253239-dc3a-4e7a-93c8-753fcf7eb586","exec":[""],"type":"text/javascript"}}],"id":"32f6f89b-a9a8-462b-99a7-2c9d791c6f7c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/applicants/{{applicant-guid}}/references/{{reference-guid}}","description":"<p><strong>Order API</strong></p>\n<p>Delete the reference for an applicant.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}","applicants","{{applicant-guid}}","references","{{reference-guid}}"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"868eb22b-ddf5-4326-9ca8-341c9446d218","name":"Delete Reference","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/applicants/{{applicant-guid}}/references/{{reference-guid}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"\"Reference has been deleted.\""}],"_postman_id":"32f6f89b-a9a8-462b-99a7-2c9d791c6f7c"}],"id":"d974c34e-8588-4443-ad2f-b311cc57d613","description":"<p>Endpoints allowing you to create, update, and delete applicant references.</p>\n","_postman_id":"d974c34e-8588-4443-ad2f-b311cc57d613","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}}},{"name":"Addresses","item":[{"name":"Create Address","event":[{"listen":"test","script":{"id":"4887879b-315a-4723-ad35-7949dbfaf90a","exec":[""],"type":"text/javascript"}}],"id":"7a4973cc-135a-460f-9058-782a1697beaa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"addressGuid\": null,\n    \"addressType\": \"DOMESTIC\",\n    \"startDate\": \"2010-11-04\",\n    \"endDate\": \"2012-10-06\",\n    \"streetOne\": \"20 Cooper Square\",\n    \"streetTwo\": null,\n    \"city\": \"New York\",\n    \"stateOrProvince\": \"NY\",\n    \"postalCode\": \"10003\",\n    \"comments\": \"Pandroa's box\",\n    \"verifyResidence\": true,\n    \"landlordName\": \"Boris Karloff\",\n    \"contactCode\": \"KARLOFF\",\n    \"landlordPhone\": \"(666) 565-3939\",\n    \"landlordEmail\": \"api-sandbox@tazworks.com\",\n    \"landlordFax\": \"(555) 555-2222\",\n    \"monthlyRent\": 1250.50,\n    \"namesOfResidents\": \"Kent, James\",\n    \"residenceType\": \"RENT\"\n}"},"url":"https://{{host}}/v1/clients/{{client-guid}}/applicants/{{applicant-guid}}/addresses","description":"<p><strong>Order API</strong></p>\n<p>Create an address for an applicant. For international addresses, you will need to provide the ISO 3166 country code. You can use the General -&gt; <strong>ISO Countries</strong> endpoint to retrieve a list of the valid ISO 3166 country codes.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>addressGuid</strong> <em>uuid</em></td>\n<td>The identifier for the address.</td>\n</tr>\n<tr>\n<td><strong>addressType</strong> <em>required, string</em></td>\n<td>The address type. Can be either <em>DOMESTIC</em> or <em>INTL</em> (international).</td>\n</tr>\n<tr>\n<td><strong>currentAddress</strong> <em>boolean</em></td>\n<td>Set to true to indicate this address is the current address.  This defaults to false.</td>\n</tr>\n<tr>\n<td><strong>streetOne</strong> <em>string</em></td>\n<td>First line of street address.</td>\n</tr>\n<tr>\n<td><strong>streetTwo</strong> <em>string</em></td>\n<td>Second line of street address.</td>\n</tr>\n<tr>\n<td><strong>city</strong> <em>string</em></td>\n<td>Address city.</td>\n</tr>\n<tr>\n<td><strong>stateOrProvince</strong> <em>string</em></td>\n<td>The address state or province.</td>\n</tr>\n<tr>\n<td><strong>postalCode</strong> <em>string</em></td>\n<td>The postal code.</td>\n</tr>\n<tr>\n<td><strong>country</strong> <em>string</em></td>\n<td>The <code>country</code> field can be left null for domestic addresses (it will be set by the system). For international addresses, supply the two or three character ISO 3166 country code.</td>\n</tr>\n</tbody>\n</table>\n</div><p>Read Only Fields</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>createdDate</strong> <em>date (long)</em></td>\n<td>The epoch date that the record was created.</td>\n</tr>\n<tr>\n<td><strong>createdBy</strong> <em>string</em></td>\n<td>The user who created the record.</td>\n</tr>\n<tr>\n<td><strong>modifiedDate</strong> <em>date (long)</em></td>\n<td>The epoch date that the record was last modified.</td>\n</tr>\n<tr>\n<td><strong>modifiedBy</strong> <em>string</em></td>\n<td>The user who last modified the record.</td>\n</tr>\n<tr>\n<td><strong>version</strong> <em>long</em></td>\n<td>The version associated with the record.</td>\n</tr>\n</tbody>\n</table>\n</div><p>Some searches require additional information for addresses. The following fields support those requirements.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>startDate</strong> <em>date (string)</em></td>\n<td>The <code>yyyy-MM-dd</code> string representation of the date the applicant began residing at this address.</td>\n</tr>\n<tr>\n<td><strong>endDate</strong> <em>date (string)</em></td>\n<td>The <code>yyyy-MM-dd</code> string representation of the date the applicant stopped residing at this address.</td>\n</tr>\n<tr>\n<td><strong>verifyResidence</strong> <em>boolean</em></td>\n<td>Set to true if the residence needs to be verified. This defaults to false.</td>\n</tr>\n<tr>\n<td><strong>landlordName</strong> <em>string</em></td>\n<td>The name of the landlord.</td>\n</tr>\n<tr>\n<td><strong>contactCode</strong> <em>string</em></td>\n<td>If you are using managed contacts for your landlords, you can specify the contact code to use for vendor routing.</td>\n</tr>\n<tr>\n<td><strong>landlordPhone</strong></td>\n<td>The landlord's phone number. The number should follow a <code>(###) ###-####</code> format.</td>\n</tr>\n<tr>\n<td><strong>landlordEmail</strong> <em>string</em></td>\n<td>The email for the landlord. This needs to be a valid email format.</td>\n</tr>\n<tr>\n<td><strong>landlordFax</strong> <em>string</em></td>\n<td>The fax number for the landlord. The number should follow a <code>(###) ###-####</code> format.</td>\n</tr>\n<tr>\n<td><strong>monthlyRent</strong> <em>double</em></td>\n<td>The amount of monthly rent.</td>\n</tr>\n<tr>\n<td><strong>comments</strong> <em>string</em></td>\n<td>Any comments.</td>\n</tr>\n<tr>\n<td><strong>namesOfResidents</strong> <em>string</em></td>\n<td>Names of other individuals also living at the residence.</td>\n</tr>\n<tr>\n<td><strong>residenceType</strong> <em>string</em></td>\n<td>The type of residence. Valie types are <em>RENT</em>, <em>OWN</em>, and <em>FAMILY_FRIEND</em>.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}","applicants","{{applicant-guid}}","addresses"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"8a8b8454-3881-4004-8783-92978cfad9a2","name":"Create Address","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n        \"addressGuid\": null,\n        \"addressType\": \"DOMESTIC\",\n        \"startDate\": \"2011-01-04\",\n        \"endDate\": \"2012-10-06\",\n        \"streetOne\": \"20 Cooper Square\",\n        \"streetTwo\": null,\n        \"city\": \"New York\",\n        \"stateOrProvince\": \"NY\",\n        \"postalCode\": \"10003\",\n        \"verifyResidence\": false\n    }","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients/{{client-guid}}/applicants/{{applicant-guid}}/addresses"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n        \"addressGuid\": \"f24d012d-cf32-4804-882e-f1ee0b4a8e76\",\n        \"addressType\": \"DOMESTIC\",\n        \"currentAddress\": false,\n        \"startDate\": \"2011-01-04\",\n        \"endDate\": \"2012-10-06\",\n        \"streetOne\": \"20 Cooper Square\",\n        \"streetTwo\": null,\n        \"city\": \"New York\",\n        \"stateOrProvince\": \"NY\",\n        \"postalCode\": \"10003\",\n        \"country\": \"US\",\n        \"verifyResidence\": false,\n        \"createdDate\": 1555084063000,\n        \"createdBy\": \"Client Foo\",\n        \"modifiedDate\": 1555084063000,\n        \"modifiedBy\": \"Client Foo\",\n        \"version\": 2\n    }"},{"id":"5469fe89-9298-4f26-813d-8bda76b674a8","name":"Current Address","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"addressGuid\": null,\n    \"addressType\": \"DOMESTIC\",\n    \"currentAddress\": true,\n    \"startDate\": \"2010-11-04\",\n    \"endDate\": \"2012-10-06\",\n    \"streetOne\": \"20 Cooper Square\",\n    \"streetTwo\": null,\n    \"city\": \"New York\",\n    \"stateOrProvince\": \"NY\",\n    \"postalCode\": \"10003\"\n}","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients/{{client-guid}}/applicants/{{applicant-guid}}/addresses"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n        \"addressGuid\": \"f24d012d-cf32-4804-882e-f1ee0b4a8e76\",\n        \"addressType\": \"DOMESTIC\",\n        \"currentAddress\": true,\n        \"startDate\": \"2011-01-04\",\n        \"endDate\": \"2012-10-06\",\n        \"streetOne\": \"20 Cooper Square\",\n        \"streetTwo\": null,\n        \"city\": \"New York\",\n        \"stateOrProvince\": \"NY\",\n        \"postalCode\": \"10003\",\n        \"verifyResidence\": false,\n        \"createdDate\": 1555084063000,\n        \"createdBy\": \"Client Foo\",\n        \"modifiedDate\": 1555084063000,\n        \"modifiedBy\": \"Client Foo\",\n        \"version\": 3\n    }"}],"_postman_id":"7a4973cc-135a-460f-9058-782a1697beaa"},{"name":"All Addresses","event":[{"listen":"test","script":{"id":"edd7342c-fdfa-496b-ab0b-86324fcdbf8b","exec":[""],"type":"text/javascript"}}],"id":"740ac101-3256-4050-993e-6ecd24ffd325","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/applicants/{{applicant-guid}}/addresses","description":"<p><strong>Order API</strong></p>\n<p>Get a list of all the addresses for an applicant.</p>\n<p>See <strong>Create Address</strong> for field descriptions.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}","applicants","{{applicant-guid}}","addresses"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"66cb120d-da7a-4b12-bd47-8680bc9fdd21","name":"All Addresses","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/applicants/{{applicant-guid}}/addresses"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"addressGuid\": \"f24d012d-cf32-4804-882e-f1ee0b4a8e76\",\n        \"addressType\": \"DOMESTIC\",\n        \"currentAddress\": false,\n        \"startDate\": \"2011-01-04\",\n        \"endDate\": \"2012-10-06\",\n        \"streetOne\": \"101 WEST END\",\n        \"streetTwo\": \"SUITE 4B\",\n        \"city\": \"Springfield\",\n        \"stateOrProvince\": \"MA\",\n        \"postalCode\": \"01103\",\n        \"country\": \"US\",\n        \"verifyResidence\": false,\n        \"residenceType\": null,\n        \"createdDate\": 1555084063000,\n        \"createdBy\": \"Client Foo\",\n        \"modifiedDate\": 1555084063000,\n        \"modifiedBy\": \"Client Foo\",\n        \"version\": 3\n    },\n    {\n        \"addressGuid\": \"af2fb93f-363d-46c1-acae-e4067eb8cc4c\",\n        \"addressType\": \"DOMESTIC\",\n        \"startDate\": \"2010-11-04\",\n        \"endDate\": \"2012-10-06\",\n        \"streetOne\": \"2nd North Circle\",\n        \"city\": \"City\",\n        \"postalCode\": \"84101\",\n        \"country\": \"US\",\n        \"comments\": \"It's cold up here.\",\n        \"verifyResidence\": true,\n        \"landlordName\": \"Jones\",\n        \"landlordPhone\": \"(555) 565-3939\",\n        \"landlordEmail\": \"api-sandbox@tazworks.com\",\n        \"landlordFax\": null,\n        \"monthlyRent\": 1250.5,\n        \"namesOfResidents\": \"Kent, James\",\n        \"residenceType\": \"RENT\",\n        \"createdDate\": 1556060498000,\n        \"createdBy\": \"Client Foo\",\n        \"modifiedDate\": 1556060498000,\n        \"modifiedBy\": \"Client Foo\",\n        \"version\": 4\n    }\n]"}],"_postman_id":"740ac101-3256-4050-993e-6ecd24ffd325"},{"name":"Single Address","event":[{"listen":"test","script":{"id":"1aa72174-a4fe-4a68-8624-1d112c7245b8","exec":[""],"type":"text/javascript"}}],"id":"06f96a5e-9046-41b4-b6f2-a73161a3d118","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/applicants/{{applicant-guid}}/addresses/{{address-guid}}","description":"<p><strong>Order API</strong></p>\n<p>Get information about a specific applicant address.</p>\n<p>See <strong>Create Address</strong> for field descriptions.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}","applicants","{{applicant-guid}}","addresses","{{address-guid}}"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"ae1b1a87-548a-497f-8c36-db3ce5e81717","name":"Single Address","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/applicants/{{applicant-guid}}/addresses/{{address-guid}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n        \"addressGuid\": \"f24d012d-cf32-4804-882e-f1ee0b4a8e76\",\n        \"addressType\": \"DOMESTIC\",\n        \"currentAddress\": false,\n        \"startDate\": \"2011-01-04\",\n        \"endDate\": \"2012-10-06\",\n        \"streetOne\": \"101 WEST END\",\n        \"streetTwo\": \"SUITE 4B\",\n        \"city\": \"Springfield\",\n        \"stateOrProvince\": \"MA\",\n        \"postalCode\": \"01103\",\n        \"country\": \"US\",\n        \"comments\": \"hello\",\n        \"verifyResidence\": false,\n        \"createdDate\": 1555084063000,\n        \"createdBy\": \"Client Foo\",\n        \"modifiedDate\": 1555084063000,\n        \"modifiedBy\": \"Client Foo\",\n        \"version\": 5\n    }"}],"_postman_id":"06f96a5e-9046-41b4-b6f2-a73161a3d118"},{"name":"Update Address","event":[{"listen":"test","script":{"id":"aa024463-9cbf-4e3d-ba68-1eb0db767574","exec":[""],"type":"text/javascript"}}],"id":"6671d3a9-81e2-476c-8840-97e5948b235a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"addressGuid\": \"{{address-guid}}\",\n    \"addressType\": \"DOMESTIC\",\n    \"startDate\": \"2010-11-04\",\n    \"endDate\": \"2012-10-06\",\n    \"streetOne\": \"20 Cooper Square\",\n    \"streetTwo\": null,\n    \"city\": \"New York\",\n    \"stateOrProvince\": \"NY\",\n    \"postalCode\": \"10003\",\n    \"country\": \"US\",\n    \"comments\": \"Pandroa's box\",\n    \"verifyResidence\": true,\n    \"landlordName\": \"Henry\",\n    \"landlordPhone\": \"(555) 555-3939\",\n    \"landlordEmail\": \"api-sandbox@tazworks.com\",\n    \"landlordFax\": null,\n    \"monthlyRent\": 1250.50,\n    \"namesOfResidents\": \"Kent, James\",\n    \"residenceType\": \"RENT\",\n    \"createdDate\": 1555084063000,\n    \"createdBy\": \"Zoo Blue\",\n    \"modifiedDate\": 1555084123000,\n    \"modifiedBy\": \"Zoo Blue\",\n    \"version\": null\n}"},"url":"https://{{host}}/v1/clients/{{client-guid}}/applicants/{{applicant-guid}}/addresses/{{address-guid}}","description":"<p><strong>Order API</strong></p>\n<p>Update the address for an applicant. Do a <strong>GET</strong> call and then update the model for the fields you want changed.</p>\n<p>See <strong>Create Address</strong> for field descriptions.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}","applicants","{{applicant-guid}}","addresses","{{address-guid}}"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"65db9d25-d8d3-4820-b109-3f4759db2077","name":"Update Address","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n        \"addressGuid\": \"f24d012d-cf32-4804-882e-f1ee0b4a8e76\",\n        \"addressType\": \"DOMESTIC\",\n        \"currentAddress\": true,\n        \"startDate\": \"2011-01-04\",\n        \"endDate\": \"2012-10-06\",\n        \"streetOne\": \"20 Cooper Square\",\n        \"streetTwo\": null,\n        \"city\": \"New York\",\n        \"stateOrProvince\": \"NY\",\n        \"postalCode\": \"10003\",\n        \"comments\": \"yikes\",\n        \"verifyResidence\": false,\n        \"landlordName\": \"Henry Longfellow\",\n        \"landlordPhone\": \"(555) 555-1212\",\n        \"namesOfResidents\": \"Kevin, George\",\n        \"residenceType\": null\n    }","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients/{{client-guid}}/applicants/{{applicant-guid}}/addresses/{{address-guid}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n        \"addressGuid\": \"f24d012d-cf32-4804-882e-f1ee0b4a8e76\",\n        \"addressType\": \"DOMESTIC\",\n        \"currentAddress\": true,\n        \"startDate\": \"2011-01-04\",\n        \"endDate\": \"2012-10-06\",\n        \"streetOne\": \"20 Cooper Square\",\n        \"streetTwo\": null,\n        \"city\": \"New York\",\n        \"stateOrProvince\": \"NY\",\n        \"postalCode\": \"10003\",\n        \"country\": \"US\",\n        \"comments\": \"yikes\",\n        \"verifyResidence\": false,\n        \"landlordName\": \"Henry Longfellow\",\n        \"landlordPhone\": \"(555) 555-1212\",\n        \"namesOfResidents\": \"Kevin, George\",\n        \"residenceType\": null,\n        \"createdDate\": 1555084063000,\n        \"createdBy\": \"Client Foo\",\n        \"modifiedDate\": 1555084063000,\n        \"modifiedBy\": \"Client Foo\",\n        \"version\": 4\n    }"}],"_postman_id":"6671d3a9-81e2-476c-8840-97e5948b235a"},{"name":"Delete Address","event":[{"listen":"test","script":{"id":"02120b88-ba79-4023-9e4f-37abaa3ef1d7","exec":[""],"type":"text/javascript"}}],"id":"69efb487-7cae-4295-a914-a1d58c3514a5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/applicants/{{applicant-guid}}/addresses/{{address-guid}}","description":"<p><strong>Order API</strong></p>\n<p>Delete an applicant address.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}","applicants","{{applicant-guid}}","addresses","{{address-guid}}"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"9cc02b1d-f0a9-46f2-a134-79985b37fb6e","name":"Delete Address","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/applicants/{{applicant-guid}}/addresses/{{address-guid}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"\"Address has been deleted.\""}],"_postman_id":"69efb487-7cae-4295-a914-a1d58c3514a5"}],"id":"57acc077-dee3-49e2-bdeb-f9ea1d9f716f","description":"<p>Endpoints allowing you to create, update, and delete applicant address information.</p>\n","_postman_id":"57acc077-dee3-49e2-bdeb-f9ea1d9f716f","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}}},{"name":"Education","item":[{"name":"Create Education","event":[{"listen":"test","script":{"id":"c9a9bcdc-328e-4120-a4bd-2d4c5f4d798a","exec":[""],"type":"text/javascript","packages":{}}}],"id":"86c0acbe-ff90-42d0-8b3c-9587dc458757","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"educationGuid\": null,\n    \"institutionName\": \"Foo State University\",\n    \"registrarPhone\": \"(555) 555-4959\",\n    \"registrarFax\": null,\n    \"registrarEmail\": \"api-sandbox@tazworks.com\",\n    \"addressType\": \"DOMESTIC\",\n    \"streetOne\": \"20 Cooper Square\",\n    \"streetTwo\": null,\n    \"city\": \"New York\",\n    \"stateOrProvince\": \"NY\",\n    \"postalCode\": \"10003\",\n    \"country\": \"US\",\n    \"startDate\": \"1991-08-01\",\n    \"endDate\": \"1991-08-01\",\n    \"firstNameUsed\": \"Henry\",\n    \"middleNameUsed\": null,\n    \"lastNameUsed\": \"Jones\",\n    \"degree\": \"Bachelor of Science\",\n    \"degreeDate\": \"2024-03-01\",\n    \"gpa\": \"3.98\",\n    \"major\": \"Meteorology\",\n    \"honors\": null\n}"},"url":"https://{{host}}/v1/clients/{{client-guid}}/applicants/{{applicant-guid}}/education","description":"<p><strong>Order API</strong></p>\n<p>Create an education entry for an applicant.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>educationGuid</strong> <em>uuid</em></td>\n<td>The identifier for the education.</td>\n</tr>\n<tr>\n<td><strong>institutionName</strong> <em>required, string</em></td>\n<td>The name of the institution of education.</td>\n</tr>\n<tr>\n<td><strong>contactCode</strong> <em>string</em></td>\n<td>If you are using managed contacts for your education institutions, you can specify the contact code to use for vendor routing.</td>\n</tr>\n<tr>\n<td><strong>registrarPhone</strong> <em>required, string</em></td>\n<td>The phone number for the institution. The number should follow a <code>(###) ###-####</code> format.</td>\n</tr>\n<tr>\n<td><strong>registrarFax</strong> <em>string</em></td>\n<td>The fax number for the institution. The number should follow a <code>(###) ###-####</code> format.</td>\n</tr>\n<tr>\n<td><strong>registrarEmail</strong> <em>string</em></td>\n<td>The email for the institution. This needs to be a valid email format.</td>\n</tr>\n<tr>\n<td><strong>addressType</strong> <em>string</em></td>\n<td>The address type. Valid values are <em>DOMESTIC</em> and <em>INTL</em> (International). This will default to <em>DOMESTIC</em>.</td>\n</tr>\n<tr>\n<td><strong>streetOne</strong> <em>string</em></td>\n<td>The street address of the institution.</td>\n</tr>\n<tr>\n<td><strong>streetTwo</strong> <em>string</em></td>\n<td>A second street address line.</td>\n</tr>\n<tr>\n<td><strong>city</strong> <em>string</em></td>\n<td>The address city.</td>\n</tr>\n<tr>\n<td><strong>stateOrProvince</strong> <em>string</em></td>\n<td>The address state or province.</td>\n</tr>\n<tr>\n<td><strong>postalCode</strong> <em>string</em></td>\n<td>The address postal code.</td>\n</tr>\n<tr>\n<td><strong>country</strong> <em>string</em></td>\n<td>If the address is domestic, this field will default to US and is optional. For domestic addresses, supply the two or three character ISO 3166 country code.</td>\n</tr>\n<tr>\n<td><strong>startDate</strong> <em>date (string)</em></td>\n<td>The <code>yyyy-MM-dd</code> string representation of the date the applicant began attending this institution.</td>\n</tr>\n<tr>\n<td><strong>endDate</strong> <em>date (string)</em></td>\n<td>The <code>yyyy-MM-dd</code> string representation of the date the applicant stopped attending this institution.</td>\n</tr>\n<tr>\n<td><strong>firstNameUsed</strong> <em>string</em></td>\n<td>The first name that the applicant was using while attending the institution.</td>\n</tr>\n<tr>\n<td><strong>middleNameUsed</strong> <em>string</em></td>\n<td>The middle name that the applicant was using while attending the institution.</td>\n</tr>\n<tr>\n<td><strong>lastNameUsed</strong> <em>string</em></td>\n<td>The last name that the applicant was using while attending the institution.</td>\n</tr>\n<tr>\n<td><strong>degree</strong> <em>string</em></td>\n<td>The degree received.</td>\n</tr>\n<tr>\n<td><strong>degreeDate</strong> <em>date (string)</em></td>\n<td>The <code>yyyy-MM-dd</code> string representation of the date the applicant received their degree.</td>\n</tr>\n<tr>\n<td><strong>gpa</strong> <em>string</em></td>\n<td>The grade point average received.</td>\n</tr>\n<tr>\n<td><strong>major</strong> <em>string</em></td>\n<td>The applicant's major.</td>\n</tr>\n<tr>\n<td><strong>honors</strong> <em>string</em></td>\n<td>Any honors received.</td>\n</tr>\n</tbody>\n</table>\n</div><p>Read Only Fields</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>createdDate</strong> <em>date (long)</em></td>\n<td>The epoch date that the record was created.</td>\n</tr>\n<tr>\n<td><strong>createdBy</strong> <em>string</em></td>\n<td>The user who created the record.</td>\n</tr>\n<tr>\n<td><strong>modifiedDate</strong> <em>date (long)</em></td>\n<td>The epoch date that the record was last modified.</td>\n</tr>\n<tr>\n<td><strong>modifiedBy</strong> <em>string</em></td>\n<td>The user who last modified the record.</td>\n</tr>\n<tr>\n<td><strong>version</strong> <em>long</em></td>\n<td>The version associated with the record.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}","applicants","{{applicant-guid}}","education"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"d742c04b-e29f-40de-80b0-35fd821e0b26","name":"Create Education","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n        \"educationGuid\": null,\n        \"institutionName\": \"Foo State University\",\n        \"registrarPhone\": \"(555) 902-4959\",\n        \"registrarFax\": null,\n        \"registrarEmail\": \"api-sandbox@tazworks.com\",\n        \"addressType\": \"DOMESTIC\",\n        \"streetOne\": \"20 Cooper Square\",\n        \"streetTwo\": null,\n        \"city\": \"New York\",\n        \"stateOrProvince\": \"NY\",\n        \"postalCode\": \"10003\",\n        \"country\": \"US\",\n        \"startDate\": \"1991-08-01\",\n        \"endDate\": \"1991-08-01\",\n        \"firstNameUsed\": \"Henry\",\n        \"middleNameUsed\": null,\n        \"lastNameUsed\": \"Jones\",\n        \"degree\": \"Bachelor of Science\",\n        \"degreeDate\": \"2024-03-01\",\n        \"gpa\": \"3.98\",\n        \"major\": \"Meteorology\",\n        \"honors\": null\n    }","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients/{{client-guid}}/applicants/{{applicant-guid}}/education"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n        \"educationGuid\": \"dc680ad6-159d-437d-84df-e07eb1cbed37\",\n        \"institutionName\": \"Foo State University\",\n        \"registrarPhone\": \"(555) 902-4959\",\n        \"registrarEmail\": \"api-sandbox@tazworks.com\",\n        \"addressType\": \"DOMESTIC\",\n        \"streetOne\": \"902 Main St.\",\n        \"streetTwo\": \"Suite 101\",\n        \"city\": \"Erda\",\n        \"stateOrProvince\": \"UT\",\n        \"postalCode\": \"84074\",\n        \"country\": \"US\",\n        \"startDate\": \"1991-08-01\",\n        \"endDate\": \"1991-08-01\",\n        \"firstNameUsed\": \"Henry\",\n        \"lastNameUsed\": \"Jones\",\n        \"degree\": \"Bachelor of Science\",\n        \"degreeDate\": \"2024-03-01\",\n        \"gpa\": \"3.98\",\n        \"major\": \"Meteorology\",\n        \"createdDate\": 1555358724000,\n        \"createdBy\": \"Client Foo\",\n        \"modifiedDate\": 1555358724000,\n        \"modifiedBy\": \"Sally Foo\",\n        \"version\": 2\n    }"}],"_postman_id":"86c0acbe-ff90-42d0-8b3c-9587dc458757"},{"name":"All Education","event":[{"listen":"test","script":{"id":"3bbb088d-51bd-4726-8cce-77b5251c2e95","exec":[""],"type":"text/javascript"}}],"id":"bd7dfbf2-d315-4b5d-8e62-6d3c3b945e03","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/applicants/{{applicant-guid}}/education","description":"<p><strong>Order API</strong></p>\n<p>Get a list of all the education entries for an applicant.</p>\n<p>See <strong>Create Education</strong> for field descriptions.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}","applicants","{{applicant-guid}}","education"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"19abd9c1-553b-4aa5-ac2b-fc3672e4203a","name":"All Education","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/applicants/{{applicant-guid}}/education"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"educationGuid\": \"09321990-e4fa-41df-9f13-ff0df290d333\",\n        \"institutionName\": \"Alaska State University\",\n        \"registrarPhone\": \"(801) 902-4959\",\n        \"registrarEmail\": \"api-sandbox@tazworks.com\",\n        \"addressType\": \"DOMESTIC\",\n        \"streetOne\": \"902 Main St.\",\n        \"startDate\": \"1991-08-01\",\n        \"endDate\": \"1991-08-01\",\n        \"firstNameUsed\": \"Henry\",\n        \"lastNameUsed\": \"Jones\",\n        \"degree\": \"Bachelor of Science\",\n        \"degreeDate\": \"2024-03-01\",\n        \"gpa\": \"3.98\",\n        \"major\": \"Meteorology\",\n        \"createdDate\": 1555084063000,\n        \"createdBy\": \"Client Foo\",\n        \"modifiedDate\": 1555084063000,\n        \"modifiedBy\": \"Sally Foo\",\n        \"version\": 2\n    },\n    {\n        \"educationGuid\": \"0471a125-601a-4009-8c8d-1e9220b01470\",\n        \"institutionName\": \"Western Community College\",\n        \"registrarPhone\": \"(555) 902-4959\",\n        \"registrarFax\": null,\n        \"registrarEmail\": \"api-sandbox@tazworks.com\",\n        \"addressType\": \"DOMESTIC\",\n        \"streetOne\": \"902 Main St.\",\n        \"city\": \"City\",\n        \"stateOrProvince\": \"MN\",\n        \"country\": \"US\",\n        \"startDate\": \"1991-08-01\",\n        \"endDate\": \"1991-08-01\",\n        \"firstNameUsed\": \"Henry\",\n        \"lastNameUsed\": \"Jones\",\n        \"degree\": \"Bachelor of Arts\",\n        \"degreeDate\": \"2024-03-01\",\n        \"gpa\": \"3.98\",\n        \"major\": \"Mathematics\",\n        \"createdDate\": 1555358661000,\n        \"createdBy\": \"Client Foo\",\n        \"modifiedDate\": 1555358882000,\n        \"modifiedBy\": \"Sally Foo\",\n        \"version\": 6\n    },\n    {\n        \"educationGuid\": \"dc680ad6-159d-437d-84df-e07eb1cbed37\",\n        \"institutionName\": \"Foo State University\",\n        \"registrarPhone\": \"(555) 902-4959\",\n        \"registrarFax\": \"(555) 192-3948\",\n        \"registrarEmail\": \"api-sandbox@tazworks.com\",\n        \"addressType\": \"DOMESTIC\",\n        \"streetOne\": \"902 Main St.\",\n        \"city\": \"Erda\",\n        \"stateOrProvince\": \"UT\",\n        \"postalCode\": \"84074\",\n        \"country\": \"US\",\n        \"startDate\": \"1991-08-01\",\n        \"endDate\": \"1991-08-01\",\n        \"firstNameUsed\": \"Henry\",\n        \"lastNameUsed\": \"Jones\",\n        \"degree\": \"Bachelor of Science\",\n        \"degreeDate\": \"2024-03-01\",\n        \"gpa\": \"3.98\",\n        \"major\": \"Meteorology\",\n        \"honors\": \"Head Boy\",\n        \"createdDate\": 1555358724000,\n        \"createdBy\": \"Client Foo\",\n        \"modifiedDate\": 1555358724000,\n        \"modifiedBy\": \"Sally Foo\",\n        \"version\": 1\n    }\n]"}],"_postman_id":"bd7dfbf2-d315-4b5d-8e62-6d3c3b945e03"},{"name":"Single Education","event":[{"listen":"test","script":{"id":"a8906faa-0226-48af-8447-3c69b2dc8426","exec":[""],"type":"text/javascript"}}],"id":"d1b97112-46d5-43d7-a3fa-bf0397c7e08d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/applicants/{{applicant-guid}}/education/{{education-guid}}","description":"<p><strong>Order API</strong></p>\n<p>Get information about a specific education entry for an applicant.</p>\n<p>See <strong>Create Education</strong> for field descriptions.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}","applicants","{{applicant-guid}}","education","{{education-guid}}"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"7941ad77-a21b-4819-a537-3a908a778447","name":"Single Education","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/applicants/{{applicant-guid}}/education/{{education-guid}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n        \"educationGuid\": \"dc680ad6-159d-437d-84df-e07eb1cbed37\",\n        \"institutionName\": \"Foo State University\",\n        \"registrarPhone\": \"(555) 902-4959\",\n        \"registrarEmail\": \"api-sandbox@tazworks.com\",\n        \"addressType\": \"DOMESTIC\",\n        \"streetOne\": \"902 Main St.\",\n        \"city\": \"Erda\",\n        \"stateOrProvince\": \"UT\",\n        \"postalCode\": \"84074\",\n        \"country\": \"US\",\n        \"startDate\": \"1991-08-01\",\n        \"endDate\": \"1991-08-01\",\n        \"firstNameUsed\": \"Henry\",\n        \"middleNameUsed\": \"Long\",\n        \"lastNameUsed\": \"Jones\",\n        \"degree\": \"Bachelor of Science\",\n        \"degreeDate\": \"2024-03-01\",\n        \"gpa\": \"3.98\",\n        \"major\": \"Meteorology\",\n        \"createdDate\": 1555358724000,\n        \"createdBy\": \"Client Foo\",\n        \"modifiedDate\": 1555358724000,\n        \"modifiedBy\": \"Sally Foo\",\n        \"version\": 1\n    }"}],"_postman_id":"d1b97112-46d5-43d7-a3fa-bf0397c7e08d"},{"name":"Update Education","event":[{"listen":"test","script":{"id":"247be28f-abff-4613-89df-40edc0006173","exec":[""],"type":"text/javascript","packages":{}}}],"id":"fb327497-a7b3-4416-97c4-ed0614404b54","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"educationGuid\": \"{{education-guid}}\",\n    \"institutionName\": \"Foo State University\",\n    \"registrarPhone\": \"(555) 555-4959\",\n    \"registrarFax\": null,\n    \"registrarEmail\": \"api-sandbox@tazworks.com\",\n    \"addressType\": \"DOMESTIC\",\n    \"streetOne\": \"20 Cooper Square\",\n    \"streetTwo\": null,\n    \"city\": \"New York\",\n    \"stateOrProvince\": \"NY\",\n    \"postalCode\": \"10003\",\n    \"country\": \"US\",\n    \"startDate\": \"1991-08-01\",\n    \"endDate\": \"1991-08-01\",\n    \"firstNameUsed\": \"Louise\",\n    \"middleNameUsed\": null,\n    \"lastNameUsed\": \"Jones\",\n    \"degree\": \"Bachelor of Science\",\n    \"degreeDate\": \"2024-03-01\",\n    \"gpa\": \"3.98\",\n    \"major\": \"Meteorology\",\n    \"honors\": null\n}"},"url":"https://{{host}}/v1/clients/{{client-guid}}/applicants/{{applicant-guid}}/education/{{education-guid}}","description":"<p><strong>Order API</strong></p>\n<p>Update the education entry for an applicant. Do a <strong>GET</strong> call and then update the model for the fields you want changed.</p>\n<p>See <strong>Create Education</strong> for field descriptions.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}","applicants","{{applicant-guid}}","education","{{education-guid}}"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"48ec528e-1a72-4a07-8dba-0b38604b0f92","name":"Update Education","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"educationGuid\": \"{{education-guid}}\",\n    \"institutionName\": \"Foo State University\",\n    \"registrarPhone\": \"(555) 555-4959\",\n    \"registrarFax\": null,\n    \"registrarEmail\": \"api-sandbox@tazworks.com\",\n    \"addressType\": \"DOMESTIC\",\n    \"streetOne\": \"20 Cooper Square\",\n    \"streetTwo\": null,\n    \"city\": \"New York\",\n    \"stateOrProvince\": \"NY\",\n    \"postalCode\": \"10003\",\n    \"country\": \"US\",\n    \"startDate\": \"1991-08-01\",\n    \"endDate\": \"1991-08-01\",\n    \"firstNameUsed\": \"Louise\",\n    \"middleNameUsed\": null,\n    \"lastNameUsed\": \"Jones\",\n    \"degree\": \"Bachelor of Science\",\n    \"degreeDate\": \"2024-03-01\",\n    \"gpa\": \"3.98\",\n    \"major\": \"Meteorology\",\n    \"honors\": null\n}","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients/{{client-guid}}/applicants/{{applicant-guid}}/education/{{education-guid}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n        \"educationGuid\": \"dc680ad6-159d-437d-84df-e07eb1cbed37\",\n        \"institutionName\": \"Foo State University\",\n        \"registrarPhone\": \"(555) 902-4959\",\n        \"registrarEmail\": \"api-sandbox@tazworks.com\",\n        \"addressType\": \"DOMESTIC\",\n        \"streetOne\": \"20 Cooper Square\",\n        \"streetTwo\": null,\n        \"city\": \"New York\",\n        \"stateOrProvince\": \"NY\",\n        \"postalCode\": \"10003\",\n        \"country\": \"US\",\n        \"startDate\": \"1991-08-01\",\n        \"endDate\": \"1991-08-01\",\n        \"firstNameUsed\": \"Henry\",\n        \"lastNameUsed\": \"Jones\",\n        \"degree\": \"Bachelor of Science\",\n        \"degreeDate\": \"2024-03-01\",\n        \"gpa\": \"3.98\",\n        \"major\": \"Meteorology\",\n        \"createdDate\": 1555358724000,\n        \"createdBy\": \"Client Foo\",\n        \"modifiedDate\": 1555358724000,\n        \"modifiedBy\": \"Sally Foo\",\n        \"version\": 2\n    }"}],"_postman_id":"fb327497-a7b3-4416-97c4-ed0614404b54"},{"name":"Delete Education","event":[{"listen":"test","script":{"id":"4af4c0f8-2ca9-4708-a477-5539650269d4","exec":[""],"type":"text/javascript"}}],"id":"8d2b17c3-5a6f-46cf-90ee-47e2258d8767","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/applicants/{{applicant-guid}}/education/{{education-guid}}","description":"<p><strong>Order API</strong></p>\n<p>Delete an education entry for an applicant.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}","applicants","{{applicant-guid}}","education","{{education-guid}}"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"380e10a8-3390-4524-af62-8c660e22fce7","name":"Delete Education","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/applicants/{{applicant-guid}}/education/{{education-guid}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"\"Education record has been deleted.\""}],"_postman_id":"8d2b17c3-5a6f-46cf-90ee-47e2258d8767"}],"id":"7f3476dc-6b2c-4e5c-a72b-f6fb66b36974","description":"<p>Endpoints allowing you to create, update, and delete applicant education information.  For international addresses, you can use the General -&gt; <strong>ISO Countries</strong> endpoint to retrieve a list of valid ISO 3166 country codes.</p>\n","event":[{"listen":"prerequest","script":{"id":"39fa7e6e-331a-4572-bff5-5b43039b015f","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"10511665-15e0-4612-8cde-1f2017250f01","type":"text/javascript","exec":[""]}}],"_postman_id":"7f3476dc-6b2c-4e5c-a72b-f6fb66b36974","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}}},{"name":"Aliases","item":[{"name":"Create Alias","event":[{"listen":"test","script":{"id":"2eec344f-8fd5-4f7f-ab08-1513839029b8","exec":[""],"type":"text/javascript"}}],"id":"89a99cc6-bc7d-4e03-91e2-574a21dc1627","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"aliasGuid\": null,\n    \"firstName\": \"Ignatius\",\n    \"middleName\": \"Lee\",\n    \"lastName\": \"Gleeb\",\n    \"generation\": \"SR\",\n    \"ssn\": \"555-22-2929\",\n    \"dateOfBirth\": \"1974-12-12\"\n}"},"url":"https://{{host}}/v1/clients/{{client-guid}}/applicants/{{applicant-guid}}/aliases","description":"<p><strong>Order API</strong></p>\n<p>Create a new applicant alias.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>aliasGuid</strong> <em>uuid</em></td>\n<td>The identifier for the alias.</td>\n</tr>\n<tr>\n<td><strong>firstName</strong> <em>string</em></td>\n<td>Alias first name.</td>\n</tr>\n<tr>\n<td><strong>middleName</strong> <em>string</em></td>\n<td>Alias middle name.</td>\n</tr>\n<tr>\n<td><strong>lastName</strong> <em>string</em></td>\n<td>Alias last name.</td>\n</tr>\n<tr>\n<td><strong>generation</strong> <em>string</em></td>\n<td>Values generation values are <em>JR</em>, <em>SR</em>, <em>I</em>, <em>II</em>, <em>III</em>, and <em>IV</em>.</td>\n</tr>\n<tr>\n<td><strong>ssn</strong> <em>string</em></td>\n<td>Alias social security number.</td>\n</tr>\n<tr>\n<td><strong>dateOfBirth</strong> <em>date (string)</em></td>\n<td>The <code>yyyy-MM-dd</code> string representation of the date of birth.</td>\n</tr>\n</tbody>\n</table>\n</div><p>Read Only Fields</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>createdDate</strong> <em>date (long)</em></td>\n<td>The epoch date that the record was created.</td>\n</tr>\n<tr>\n<td><strong>createdBy</strong> <em>string</em></td>\n<td>The user who created the record.</td>\n</tr>\n<tr>\n<td><strong>modifiedDate</strong> <em>date (long)</em></td>\n<td>The epoch date that the record was last modified.</td>\n</tr>\n<tr>\n<td><strong>modifiedBy</strong> <em>string</em></td>\n<td>The user who last modified the record.</td>\n</tr>\n<tr>\n<td><strong>version</strong> <em>long</em></td>\n<td>The version associated with the record.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}","applicants","{{applicant-guid}}","aliases"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"9deaa09d-dd3b-41a4-a8d0-d672d7adcb92","name":"Create Alias","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n        \"aliasGuid\": null,\n        \"firstName\": \"Ignatius\",\n        \"middleName\": \"Lee\",\n        \"lastName\": \"Gleeb\",\n        \"generation\": \"SR\",\n        \"ssn\": \"XXX-XX-2929\",\n        \"dateOfBirth\": null\n    }","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients/{{client-guid}}/applicants/{{applicant-guid}}/aliases"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n        \"aliasGuid\": \"017de987-2ed8-4616-a59c-050a2a99f8f1\",\n        \"firstName\": \"Ignatius\",\n        \"middleName\": \"Lee\",\n        \"lastName\": \"Gleeb\",\n        \"generation\": \"SR\",\n        \"ssn\": \"XXX-XX-2929\",\n        \"createdDate\": 1555352461000,\n        \"createdBy\": \"Client Foo\",\n        \"modifiedDate\": 1555352461000,\n        \"modifiedBy\": \"Client Foo\",\n        \"version\": 1\n    }"}],"_postman_id":"89a99cc6-bc7d-4e03-91e2-574a21dc1627"},{"name":"All Aliases","event":[{"listen":"test","script":{"id":"e290dd89-a936-4e6e-aebb-29097406bd1b","exec":[""],"type":"text/javascript"}}],"id":"169326ad-e36e-46f2-b76a-0b857f0453ff","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/applicants/{{applicant-guid}}/aliases","description":"<p><strong>Order API</strong></p>\n<p>Get a list of all of the aliases for an applicant.</p>\n<p>See <strong>Create Alias</strong> for field descriptions.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}","applicants","{{applicant-guid}}","aliases"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"82c742ff-0de7-4cef-a468-90df1360d062","name":"All Aliases","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/applicants/{{applicant-guid}}/aliases"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n\t{\n        \"aliasGuid\": \"017de987-2ed8-4616-a59c-050a2a99f8f1\",\n        \"firstName\": \"Ignatius\",\n        \"middleName\": \"Lee\",\n        \"lastName\": \"Gleeb\",\n        \"ssn\": \"XXX-XX-2929\",\n        \"createdDate\": 1555352461000,\n        \"createdBy\": \"Client Foo\",\n        \"modifiedDate\": 1555352461000,\n        \"modifiedBy\": \"Client Foo\",\n        \"version\": 1\n    },\n    {\n        \"aliasGuid\": \"e9b7ce6d-3796-46c3-b2dc-7cb64ee5d68e\",\n        \"firstName\": \"Iggy\",\n        \"middleName\": \"L\",\n        \"lastName\": \"Gleeb\",\n        \"ssn\": \"XXX-XX-1111\",\n        \"createdDate\": 1555352483000,\n        \"createdBy\": \"Client Foo\",\n        \"modifiedDate\": 1555358913000,\n        \"modifiedBy\": \"Client Foo\",\n        \"version\": 1\n    }\n]"}],"_postman_id":"169326ad-e36e-46f2-b76a-0b857f0453ff"},{"name":"Single Alias","event":[{"listen":"test","script":{"id":"2e939fcf-6827-4a2d-98b2-a474b771751c","exec":[""],"type":"text/javascript"}}],"id":"a2aa9824-0bf2-49ff-99c3-61216a3665ac","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/applicants/{{applicant-guid}}/aliases/{{alias-guid}}","description":"<p><strong>Order API</strong></p>\n<p>Get a specific applicant alias.</p>\n<p>See <strong>Create Alias</strong> for field descriptions.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}","applicants","{{applicant-guid}}","aliases","{{alias-guid}}"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"014b8e83-d4b6-4f5a-8824-60292ed60fd7","name":"Single Alias","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/applicants/{{applicant-guid}}/aliases/{{alias-guid}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n        \"aliasGuid\": \"017de987-2ed8-4616-a59c-050a2a99f8f1\",\n        \"firstName\": \"Ignatius\",\n        \"middleName\": \"Lee\",\n        \"lastName\": \"Gleeb\",\n        \"ssn\": \"XXX-XX-2929\",\n        \"createdDate\": 1555352461000,\n        \"createdBy\": \"Client Foo\",\n        \"modifiedDate\": 1555352461000,\n        \"modifiedBy\": \"Client Foo\",\n        \"version\": 2\n    }"}],"_postman_id":"a2aa9824-0bf2-49ff-99c3-61216a3665ac"},{"name":"Update Alias","event":[{"listen":"test","script":{"id":"d2d88e06-2c66-48d3-bd0e-2f5f2c9613bb","exec":[""],"type":"text/javascript"}}],"id":"f238a01b-82f7-4f52-97e1-c0258162d771","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"aliasGuid\": \"{{alias-guid}}\",\n    \"firstName\": \"Ignatius\",\n    \"middleName\": \"Mark\",\n    \"lastName\": \"Gleeb\",\n    \"generation\": \"JR\",\n    \"ssn\": \"111-22-2929\",\n    \"dateOfBirth\": \"1974-12-12\"\n}"},"url":"https://{{host}}/v1/clients/{{client-guid}}/applicants/{{applicant-guid}}/aliases/{{alias-guid}}","description":"<p><strong>Order API</strong></p>\n<p>Update an applicant alias. Do a <strong>GET</strong> call and then update the model for the fields you want changed.</p>\n<p>See <strong>Create Alias</strong> for field descriptions.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}","applicants","{{applicant-guid}}","aliases","{{alias-guid}}"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"d36941ef-3b4c-416a-824b-0f0938264815","name":"Update Alias","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"aliasGuid\": \"{{alias-guid}}\",\n    \"firstName\": \"Ignatius\",\n    \"middleName\": \"Mark\",\n    \"lastName\": \"Gleeb\",\n    \"generation\": \"JR\",\n    \"ssn\": \"888-22-2929\",\n    \"dateOfBirth\": \"1974-12-12\"\n}","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients/{{client-guid}}/applicants/{{applicant-guid}}/aliases/{{alias-guid}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n        \"aliasGuid\": \"017de987-2ed8-4616-a59c-050a2a99f8f1\",\n        \"firstName\": \"Ignatius\",\n        \"middleName\": \"Lee\",\n        \"lastName\": \"Gleeb\",\n        \"generation\": \"JR\",\n        \"ssn\": \"XXX-XX-2929\",\n        \"createdDate\": 1555352461000,\n        \"createdBy\": \"Client Foo\",\n        \"modifiedDate\": 1555352461000,\n        \"modifiedBy\": \"Client Foo\",\n        \"version\": 2\n    }"}],"_postman_id":"f238a01b-82f7-4f52-97e1-c0258162d771"},{"name":"Delete Alias","event":[{"listen":"test","script":{"id":"86dce26d-2dc1-43c1-8cc2-d288c0033db5","exec":[""],"type":"text/javascript"}}],"id":"df180e3e-17ca-4c09-aae4-85ddd5a95035","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/applicants/{{applicant-guid}}/aliases/{{alias-guid}}","description":"<p><strong>Order API</strong></p>\n<p>Delete an applicant alias.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}","applicants","{{applicant-guid}}","aliases","{{alias-guid}}"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"427ca20d-dcbf-4df9-a295-e49ab055abda","name":"Delete Alias","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/applicants/{{applicant-guid}}/aliases/{{alias-guid}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"\"Alias has been deleted.\""}],"_postman_id":"df180e3e-17ca-4c09-aae4-85ddd5a95035"}],"id":"a4c9072a-dac7-45e9-9440-a08696101e5b","description":"<p>Endpoints allowing you to create, update, and delete applicant aliases.</p>\n","_postman_id":"a4c9072a-dac7-45e9-9440-a08696101e5b","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}}},{"name":"Employment","item":[{"name":"Create Employment","event":[{"listen":"test","script":{"id":"d196b94a-8960-457d-893b-2d6a38ac3edd","exec":[""],"type":"text/javascript"}}],"id":"88226236-5852-4710-b707-c96a92726c1b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"employmentGuid\": null,\n    \"employerName\": \"Fipps\",\n    \"currentEmployer\": true,\n    \"mayWeContactEmployer\": true,\n    \"contactPhone\": \"(555) 555-5849\",\n    \"contactEmail\": \"api-sandbox@tazworks.com\",\n    \"contactFax\": null,\n    \"addressType\": \"DOMESTIC\",\n    \"streetOne\": \"909 W 400 S\",\n    \"streetTwo\": null,\n    \"city\": \"Denver\",\n    \"stateOrProvince\": \"CO\",\n    \"postalCode\": null,\n    \"firstNameUsed\": \"Karen\",\n    \"middleNameUsed\": null,\n    \"lastNameUsed\": \"Chensy\",\n    \"startDate\": \"2010-04-05\",\n    \"endDate\": \"2010-04-05\",\n    \"jobTitle\": \"Manager\",\n    \"supervisor\": \"Guevera Jupe\",\n    \"salary\": 3425.89,\n    \"salaryFrequency\": \"WEEK\",\n    \"salaryType\": \"FULL\",\n    \"reasonForLeaving\": null,\n    \"additionalInfo\": null\n}"},"url":"https://{{host}}/v1/clients/{{client-guid}}/applicants/{{applicant-guid}}/employment","description":"<p><strong>Order API</strong></p>\n<p>Create a new employment entry for an applicant.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>employmentGuid</strong> <em>uuid</em></td>\n<td>The identifier of the employment record.</td>\n</tr>\n<tr>\n<td><strong>employerName</strong> <em>required, string</em></td>\n<td>The name of the employer.</td>\n</tr>\n<tr>\n<td><strong>contactCode</strong> <em>string</em></td>\n<td>If you are using managed contacts for your employers, you can specify the contact code to use for vendor routing.</td>\n</tr>\n<tr>\n<td><strong>currentEmployer</strong> <em>required, boolean</em></td>\n<td>Set to true if the applicant is currently employed with this employer. This defaults to false.</td>\n</tr>\n<tr>\n<td><strong>mayWeContactEmployer</strong> <em>boolean</em></td>\n<td>Set to true if this employer can be contacted. This defaults to false.</td>\n</tr>\n<tr>\n<td><strong>contactPhone</strong> <em>string</em></td>\n<td>The phone number of a contact for the place of employment. The number should follow a <code>(###) ###-####</code> format.</td>\n</tr>\n<tr>\n<td><strong>contactEmail</strong> <em>string</em></td>\n<td>Contact email. This needs to be a valid email format.</td>\n</tr>\n<tr>\n<td><strong>contactFax</strong> <em>string</em></td>\n<td>Contact fax number. The number should follow a <code>(###) ###-####</code> format.</td>\n</tr>\n<tr>\n<td><strong>addressType</strong> <em>string</em></td>\n<td>The address type. Valid values are <em>DOMESTIC</em> and <em>INTL</em> (International). This will default to <em>DOMESTIC</em> and is optional for domestic addresses.</td>\n</tr>\n<tr>\n<td><strong>streetOne</strong> <em>string</em></td>\n<td>Employment address first line.</td>\n</tr>\n<tr>\n<td><strong>streetTwo</strong> <em>string</em></td>\n<td>Employment address second line.</td>\n</tr>\n<tr>\n<td><strong>city</strong> <em>string</em></td>\n<td>Employment address city.</td>\n</tr>\n<tr>\n<td><strong>stateOrProvince</strong> <em>string</em></td>\n<td>Employment address state or province.</td>\n</tr>\n<tr>\n<td><strong>postalCode</strong> <em>string</em></td>\n<td>Employment address postal code.</td>\n</tr>\n<tr>\n<td><strong>country</strong> <em>string</em></td>\n<td>If the address is domestic, this field will default to US and is optional. For domestic addresses, supply the two or three character ISO 3166 country code.</td>\n</tr>\n<tr>\n<td><strong>firstNameUsed</strong> <em>required, string</em></td>\n<td>The first name that the applicant was using while employed.</td>\n</tr>\n<tr>\n<td><strong>middleNameUsed</strong> <em>string</em></td>\n<td>The middle name that the applicant was using while employed.</td>\n</tr>\n<tr>\n<td><strong>lastNameUsed</strong> <em>required, string</em></td>\n<td>The last name that the applicant was using while employed.</td>\n</tr>\n<tr>\n<td><strong>startDate</strong> <em>date (string)</em></td>\n<td>The <code>yyyy-MM-dd</code> string representation of the date the applicant began their employment.</td>\n</tr>\n<tr>\n<td><strong>endDate</strong> <em>date (string)</em></td>\n<td>The <code>yyyy-MM-dd</code> string representation of the date the applicant ended their employment.</td>\n</tr>\n<tr>\n<td><strong>jobTitle</strong> <em>string</em></td>\n<td>Applicant's job title while employed.</td>\n</tr>\n<tr>\n<td><strong>supervisor</strong> <em>required, string</em></td>\n<td>Name of applicant's supervisor.</td>\n</tr>\n<tr>\n<td><strong>salary</strong> <em>double</em></td>\n<td>Salary amount.</td>\n</tr>\n<tr>\n<td><strong>salaryFrequency</strong> <em>string</em></td>\n<td>The salary frequency related to the amount. Valid values are <em>HOUR</em>, <em>WEEK</em>, <em>MONTH</em>, <em>YEAR</em>, and <em>CONTRACT</em>.</td>\n</tr>\n<tr>\n<td><strong>salaryType</strong> <em>string</em></td>\n<td>The salary type. Valid types are <em>FULL</em>, <em>PART</em>, <em>TEMP</em>, <em>CONTRACT</em>, and <em>OTHER</em>.</td>\n</tr>\n<tr>\n<td><strong>reasonForLeaving</strong> <em>string</em></td>\n<td>The reason the applicant ended their employment.</td>\n</tr>\n<tr>\n<td><strong>additionalInfo</strong> <em>string</em></td>\n<td>Any additional information.</td>\n</tr>\n</tbody>\n</table>\n</div><p>Read Only Fields</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>createdDate</strong> <em>date (long)</em></td>\n<td>The epoch date that the record was created.</td>\n</tr>\n<tr>\n<td><strong>createdBy</strong> <em>string</em></td>\n<td>The user who created the record.</td>\n</tr>\n<tr>\n<td><strong>modifiedDate</strong> <em>date (long)</em></td>\n<td>The epoch date that the record was last modified.</td>\n</tr>\n<tr>\n<td><strong>modifiedBy</strong> <em>string</em></td>\n<td>The user who last modified the record.</td>\n</tr>\n<tr>\n<td><strong>version</strong> <em>long</em></td>\n<td>The version associated with the record.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}","applicants","{{applicant-guid}}","employment"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"4cdf2876-810c-4354-8ee5-304c8c3a4bb8","name":"Create Employment","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n        \"employmentGuid\": null,\n        \"employerName\": \"Fipps\",\n        \"currentEmployer\": true,\n        \"mayWeContactEmployer\": true,\n        \"contactPhone\": \"(888) 345-5849\",\n        \"contactEmail\": \"api-sandbox@tazworks.com\",\n        \"contactFax\": null,\n        \"addressType\": \"DOMESTIC\",\n        \"streetOne\": \"909 W 400 S\",\n        \"streetTwo\": null,\n        \"city\": \"Denver\",\n        \"stateOrProvince\": \"CO\",\n        \"postalCode\": null,\n        \"firstNameUsed\": \"Karen\",\n        \"middleNameUsed\": null,\n        \"lastNameUsed\": \"Chensy\",\n        \"startDate\": \"2010-04-05\",\n        \"endDate\": \"2010-04-05\",\n        \"jobTitle\": \"Manager\",\n        \"supervisor\": \"Ute Manks\",\n        \"salary\": 3425.89,\n        \"salaryFrequency\": \"WEEK\",\n        \"salaryType\": \"FULL\",\n        \"reasonForLeaving\": null,\n        \"additionalInfo\": null\n    }","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients/{{client-guid}}/applicants/{{applicant-guid}}/employment"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n        \"employmentGuid\": \"e03fdb07-da05-4249-a078-43e73c7aff08\",\n        \"employerName\": \"Fipps\",\n        \"currentEmployer\": true,\n        \"mayWeContactEmployer\": true,\n        \"contactPhone\": \"(888) 345-5849\",\n        \"contactEmail\": \"api-sandbox@tazworks.com\",\n        \"addressType\": \"DOMESTIC\",\n        \"streetOne\": \"909 W 400 S\",\n        \"city\": \"Denver\",\n        \"stateOrProvince\": \"CO\",\n        \"country\": \"US\",\n        \"firstNameUsed\": \"Karen\",\n        \"lastNameUsed\": \"Chensy\",\n        \"startDate\": \"2010-04-05\",\n        \"endDate\": \"2010-04-05\",\n        \"jobTitle\": \"Manager\",\n        \"supervisor\": \"Ute Manks\",\n        \"salary\": 3425.89,\n        \"salaryFrequency\": \"WEEK\",\n        \"salaryType\": \"FULL\",\n        \"createdDate\": 1555362972000,\n        \"createdBy\": \"Sally Foo\",\n        \"modifiedDate\": 1555362972000,\n        \"modifiedBy\": \"Sally Foo\",\n        \"version\": 1\n    }"}],"_postman_id":"88226236-5852-4710-b707-c96a92726c1b"},{"name":"All Employment","event":[{"listen":"test","script":{"id":"9d7afc09-f0ee-4031-8a92-a745311216d9","exec":[""],"type":"text/javascript"}}],"id":"5977dce7-cd6e-4685-b05e-b98f0b83a87f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/applicants/{{applicant-guid}}/employment","description":"<p><strong>Order API</strong></p>\n<p>Get a list of all the employment entries for an applicant.</p>\n<p>See <strong>Create Employment</strong> for field descriptions.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}","applicants","{{applicant-guid}}","employment"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"c2d811f7-084a-409d-9605-579930c2a0c3","name":"All Employment","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/applicants/{{applicant-guid}}/employment"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"employmentGuid\": \"4bc73f63-73eb-4e31-971a-ea5c74968bea\",\n        \"employerName\": \"UPS\",\n        \"currentEmployer\": true,\n        \"mayWeContactEmployer\": true,\n        \"addressType\": \"DOMESTIC\",\n        \"streetOne\": \"909 W 400 S\",\n        \"city\": \"Holtsville\",\n        \"stateOrProvince\": \"NY\",\n        \"postalCode\": \"00544\",\n        \"country\": \"US\",\n        \"firstNameUsed\": \"Hank\",\n        \"lastNameUsed\": \"Farnsworth\",\n        \"startDate\": \"2010-04-05\",\n        \"endDate\": \"2010-04-05\",\n        \"jobTitle\": \"Manager\",\n        \"supervisor\": \"John Jones\",\n        \"salary\": 425,\n        \"salaryFrequency\": \"WEEK\",\n        \"salaryType\": \"FULL\",\n        \"createdDate\": 1555084063000,\n        \"createdBy\": \"Client Foo\",\n        \"modifiedDate\": 1555084063000,\n        \"modifiedBy\": \"Client Foo\",\n        \"version\": 1\n    },\n    {\n        \"employmentGuid\": \"e03fdb07-da05-4249-a078-43e73c7aff08\",\n        \"employerName\": \"Fipps\",\n        \"currentEmployer\": true,\n        \"mayWeContactEmployer\": true,\n        \"contactPhone\": \"(888) 345-5849\",\n        \"contactEmail\": \"api-sandbox@tazworks.com\",\n        \"addressType\": \"DOMESTIC\",\n        \"streetOne\": \"909 W 400 S\",\n        \"city\": \"Denver\",\n        \"stateOrProvince\": \"CO\",\n        \"postalCode\": \"55555\",\n        \"country\": \"US\",\n        \"firstNameUsed\": \"Karen\",\n        \"lastNameUsed\": \"Chensy\",\n        \"startDate\": \"2010-04-05\",\n        \"endDate\": \"2010-04-05\",\n        \"jobTitle\": \"Manager\",\n        \"supervisor\": \"Ute Manks\",\n        \"salary\": 3425.89,\n        \"salaryFrequency\": \"WEEK\",\n        \"salaryType\": \"FULL\",\n        \"createdDate\": 1555362972000,\n        \"createdBy\": \"Sally Foo\",\n        \"modifiedDate\": 1555362972000,\n        \"modifiedBy\": \"Sally Foo\",\n        \"version\": 1\n    }\n]"}],"_postman_id":"5977dce7-cd6e-4685-b05e-b98f0b83a87f"},{"name":"Single Employment","event":[{"listen":"test","script":{"id":"6e1f0f2d-8cc6-449b-8236-5cbedfab32b2","exec":[""],"type":"text/javascript"}}],"id":"903fe0c6-193e-457d-9f02-81701ae46a5f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/applicants/{{applicant-guid}}/employment/{{employment-guid}}","description":"<p><strong>Order API</strong></p>\n<p>Get information about a specific employment entry for an applicant.</p>\n<p>See <strong>Create Employment</strong> for field descriptions.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}","applicants","{{applicant-guid}}","employment","{{employment-guid}}"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"10ab462c-80f7-4c36-bc87-89fe7ca5064c","name":"Single Employment","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/applicants/{{applicant-guid}}/employment/{{employment-guid}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n        \"employmentGuid\": \"e03fdb07-da05-4249-a078-43e73c7aff08\",\n        \"employerName\": \"Fipps\",\n        \"currentEmployer\": true,\n        \"mayWeContactEmployer\": true,\n        \"contactPhone\": \"(888) 345-5849\",\n        \"contactEmail\": \"api-sandbox@tazworks.com\",\n        \"addressType\": \"DOMESTIC\",\n        \"streetOne\": \"909 W 400 S\",\n        \"city\": \"San Francisco\",\n        \"stateOrProvince\": \"CA\",\n        \"postalCode\": \"90210\",\n        \"country\": \"US\",\n        \"firstNameUsed\": \"Karen\",\n        \"lastNameUsed\": \"Chensy\",\n        \"startDate\": \"2010-04-05\",\n        \"endDate\": \"2010-04-05\",\n        \"jobTitle\": \"Manager\",\n        \"supervisor\": \"Ute Manks\",\n        \"salary\": 3425.89,\n        \"salaryFrequency\": \"WEEK\",\n        \"salaryType\": \"FULL\",\n        \"reasonForLeaving\": \"Went on sabbatical\",\n        \"createdDate\": 1555362972000,\n        \"createdBy\": \"Sally Foo\",\n        \"modifiedDate\": 1555362972000,\n        \"modifiedBy\": \"Sally Foo\",\n        \"version\": 2\n    }"}],"_postman_id":"903fe0c6-193e-457d-9f02-81701ae46a5f"},{"name":"Update Employment","event":[{"listen":"test","script":{"id":"ebda26c1-282c-4ff8-adc2-02ba8e1d8b92","exec":[""],"type":"text/javascript"}}],"id":"9d8a33ce-1a48-427a-9d4e-2f2bc1785cfe","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"employmentGuid\": \"{{employment-guid}}\",\n    \"employerName\": \"Fopps\",\n    \"currentEmployer\": true,\n    \"mayWeContactEmployer\": true,\n    \"contactPhone\": \"(555) 555-5849\",\n    \"contactEmail\": \"api-sandbox@tazworks.com\",\n    \"contactFax\": null,\n    \"addressType\": \"DOMESTIC\",\n    \"streetOne\": \"909 W 400 S\",\n    \"streetTwo\": null,\n    \"city\": \"Denver\",\n    \"stateOrProvince\": \"CO\",\n    \"firstNameUsed\": \"Karen\",\n    \"lastNameUsed\": \"Chensy\",\n    \"startDate\": \"2010-04-05\",\n    \"endDate\": \"2010-04-05\",\n    \"jobTitle\": \"Manager\",\n    \"supervisor\": \"Guevera Jupe\",\n    \"salary\": 3425.89,\n    \"salaryFrequency\": \"WEEK\",\n    \"salaryType\": \"FULL\"\n}"},"url":"https://{{host}}/v1/clients/{{client-guid}}/applicants/{{applicant-guid}}/employment/{{employment-guid}}","description":"<p><strong>Order API</strong></p>\n<p>Update the employment entry for an applicant. Do a <strong>GET</strong> call and then update the model for the fields you want changed.</p>\n<p>See <strong>Create Employment</strong> for field descriptions.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}","applicants","{{applicant-guid}}","employment","{{employment-guid}}"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"2d9c3931-a068-42e0-907a-44ef70050316","name":"Update Employment","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n        \"employmentGuid\": \"e03fdb07-da05-4249-a078-43e73c7aff08\",\n        \"employerName\": \"Fipps\",\n        \"currentEmployer\": true,\n        \"mayWeContactEmployer\": true,\n        \"contactPhone\": \"(888) 345-5849\",\n        \"contactEmail\": \"api-sandbox@tazworks.com\",\n        \"contactFax\": null,\n        \"addressType\": \"DOMESTIC\",\n        \"streetOne\": \"909 W 400 S\",\n        \"city\": \"Denver\",\n        \"stateOrProvince\": \"CO\",\n        \"postalCode\": \"90990\",\n        \"firstNameUsed\": \"Karen\",\n        \"lastNameUsed\": \"Chensy\",\n        \"startDate\": \"2010-04-05\",\n        \"endDate\": \"2010-04-05\",\n        \"jobTitle\": \"Manager\",\n        \"supervisor\": \"Ute Manks\",\n        \"salary\": 3425.89,\n        \"salaryFrequency\": \"WEEK\",\n        \"salaryType\": \"FULL\",\n        \"reasonForLeaving\": null,\n        \"additionalInfo\": null\n    }","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients/{{client-guid}}/applicants/{{applicant-guid}}/employment/{{employment-guid}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n        \"employmentGuid\": \"e03fdb07-da05-4249-a078-43e73c7aff08\",\n        \"employerName\": \"Fipps\",\n        \"currentEmployer\": true,\n        \"mayWeContactEmployer\": true,\n        \"contactPhone\": \"(888) 345-5849\",\n        \"contactEmail\": \"api-sandbox@tazworks.com\",\n        \"addressType\": \"DOMESTIC\",\n        \"streetOne\": \"909 W 400 S\",\n        \"city\": \"Denver\",\n        \"stateOrProvince\": \"CO\",\n        \"postalCode\": \"90990\",\n        \"country\": \"US\",\n        \"firstNameUsed\": \"Karen\",\n        \"lastNameUsed\": \"Chensy\",\n        \"startDate\": \"2010-04-05\",\n        \"endDate\": \"2010-04-05\",\n        \"jobTitle\": \"Manager\",\n        \"supervisor\": \"Ute Manks\",\n        \"salary\": 3425.89,\n        \"salaryFrequency\": \"WEEK\",\n        \"salaryType\": \"FULL\",\n        \"createdDate\": 1555362972000,\n        \"createdBy\": \"Sally Foo\",\n        \"modifiedDate\": 1555362972000,\n        \"modifiedBy\": \"Sally Foo\",\n        \"version\": 2\n    }"}],"_postman_id":"9d8a33ce-1a48-427a-9d4e-2f2bc1785cfe"},{"name":"Delete Employment","event":[{"listen":"test","script":{"id":"7e3f25e5-fd84-45cd-9984-ed2e262a96ed","exec":[""],"type":"text/javascript"}}],"id":"b2cfa481-92e1-4140-bfe5-da06a21c576d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/applicants/{{applicant-guid}}/employment/{{employment-guid}}","description":"<p><strong>Order API</strong></p>\n<p>Delete an employment entry for an applicant.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}","applicants","{{applicant-guid}}","employment","{{employment-guid}}"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"f8889fb5-854c-454d-8164-aacb0c4e1874","name":"Delete Employment","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/applicants/{{applicant-guid}}/employment/{{employment-guid}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"\"Employment record has been deleted.\""}],"_postman_id":"b2cfa481-92e1-4140-bfe5-da06a21c576d"}],"id":"586f8d60-7b23-41b6-94eb-1bd2fb07df1e","description":"<p>Endpoints allowing you to create, update, and delete applicant employment information.  For international addresses, you can use the General -&gt; <strong>ISO Countries</strong> endpoint to retrieve a list of valid ISO 3166 country codes.</p>\n","event":[{"listen":"prerequest","script":{"id":"bc7ebd2f-6c2a-43ee-8b75-731bd58d5975","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"04c28530-4de5-4ffe-90e3-d1207d217681","type":"text/javascript","exec":[""]}}],"_postman_id":"586f8d60-7b23-41b6-94eb-1bd2fb07df1e","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}}},{"name":"Create Applicant","event":[{"listen":"test","script":{"id":"c9b43506-67d3-41a1-ac24-f41a38fb41b9","exec":[""],"type":"text/javascript"}}],"id":"c855fb17-55be-4458-8f3a-38a13408df1f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"applicantGuid\": null,\n    \"firstName\": \"Sue\",\n    \"middleName\": \"M\",\n    \"noMiddleName\": false,\n    \"lastName\": \"Smith\",\n    \"generation\": null,\n    \"gender\": \"FEMALE\",\n    \"ssn\": \"555-10-1111\",\n    \"race\": null,\n    \"dateOfBirth\": \"1992-10-22\",\n    \"email\": \"api-sandbox@tazworks.com\",\n    \"phoneNumber\": \"(555) 565-4343\",\n    \"textingEnabled\": true,\n    \"driverLicense\": \"123456789\",\n    \"driverLicenseState\": \"AZ\",\n    \"proposedPosition\": \"Astronomer\",\n    \"proposedSalary\": \"salary\",\n    \"monthlyIncome\": 5000,\n    \"monthlyDebt\": 250,\n    \"monthlyRent\": 980,\n    \"desiredUnit\": \"unit\",\n    \"referredBy\": \"Jane Doe\",\n\t\"jobCode\": \"JOBCODE\",\n\t\"jobLocation\": \"Somewhere\",\n\t\"stateOfEmployment\": \"AZ\",\n\t\"cityOfEmployment\": \"Phoenix\",\n\t\"countyOfEmployment\": \"Maricopa\"\n}"},"url":"https://{{host}}/v1/clients/{{client-guid}}/applicants","description":"<p><strong>Order API</strong></p>\n<p>Create a new applicant.</p>\n<p>For a QuickApp order, the minimum applicant information you need is <code>firstName</code>, <code>middleName</code>(optional), <code>lastName</code>, and <code>email</code>. Provide <code>phoneNumber</code> and set <code>textingEnabled</code> to true if you also want the QuickApp invitation sent via text message.</p>\n<p>When creating an applicant, you can choose to submit all relevant detail information with the applicant information. See the 'Create Applicant with Detail Data' example which shows adding address, alias, and professional licenses at the time of creating the applicant. Note that while you can do this when creating an applicant, it is not supported when updating an applicant. When updating, you will need to call the endpoint for the specific type of detail data that you want to update.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>applicantGuid</strong> <em>uuid</em></td>\n<td>The identifier for the applicant.</td>\n</tr>\n<tr>\n<td><strong>firstName</strong> <em>required, string</em></td>\n<td>Applicant first name.</td>\n</tr>\n<tr>\n<td><strong>middleName</strong>, <em>string</em></td>\n<td>Applicant middle name.</td>\n</tr>\n<tr>\n<td><strong>noMiddleName</strong>, <em>boolean</em></td>\n<td>Set to true if the applicant has no middle name. This field will be necessary for searches which require a middle name. This defaults to false.</td>\n</tr>\n<tr>\n<td><strong>lastName</strong>, <em>required, string</em></td>\n<td>Applicant last name.</td>\n</tr>\n<tr>\n<td><strong>generation</strong> <em>string</em></td>\n<td>Valid generation values are <em>JR</em>, <em>SR</em>, <em>I</em>, <em>II</em>, <em>III</em>, and <em>IV</em>.</td>\n</tr>\n<tr>\n<td><strong>gender</strong> <em>string</em></td>\n<td><em>MALE</em> or <em>FEMALE</em>.</td>\n</tr>\n<tr>\n<td><strong>ssn</strong> <em>string</em></td>\n<td>Applicant social security number.</td>\n</tr>\n<tr>\n<td><strong>race</strong> <em>string</em></td>\n<td>Applicant race.</td>\n</tr>\n<tr>\n<td><strong>dateOfBirth</strong> <em>date (string)</em></td>\n<td>The <code>yyyy-MM-dd</code> string representation of the date of birth.</td>\n</tr>\n<tr>\n<td><strong>email</strong> <em>string</em></td>\n<td>Applicant's email. This needs to be a valid email format.</td>\n</tr>\n<tr>\n<td><strong>phoneNumber</strong> <em>string</em></td>\n<td>Applicant's phone number. The number should follow a <code>(###) ###-####</code> format.</td>\n</tr>\n<tr>\n<td><strong>textingEnabled</strong> <em>boolean</em></td>\n<td>Set to true if the applicant has a texting enabled phone. This defaults to false.</td>\n</tr>\n<tr>\n<td><strong>driverLicense</strong> <em>string</em></td>\n<td>Applicant driver license.</td>\n</tr>\n<tr>\n<td><strong>driverLicenseState</strong> <em>string</em></td>\n<td>The two-character state where the driver license was issued.</td>\n</tr>\n<tr>\n<td><strong>proposedPosition</strong> <em>string</em></td>\n<td>Applicant's proposed position.</td>\n</tr>\n<tr>\n<td><strong>proposedSalary</strong> <em>string</em></td>\n<td>Applicant's proposed salary.</td>\n</tr>\n<tr>\n<td><strong>monthlyIncome</strong> <em>integer</em></td>\n<td>Amount of monthly income.</td>\n</tr>\n<tr>\n<td><strong>monthlyDebt</strong> <em>integer</em></td>\n<td>Amount of monthly debt.</td>\n</tr>\n<tr>\n<td><strong>monthlyRent</strong> <em>integer</em></td>\n<td>Amount of monthly rent.</td>\n</tr>\n<tr>\n<td><strong>desiredUnit</strong> <em>string</em></td>\n<td>Desired unit.</td>\n</tr>\n<tr>\n<td><strong>referredBy</strong> <em>string</em></td>\n<td>The person who referred the applicant.</td>\n</tr>\n<tr>\n<td><strong>jobCode</strong> <em>string</em></td>\n<td>Job code.</td>\n</tr>\n<tr>\n<td><strong>jobLocation</strong> <em>string</em></td>\n<td>Job location.</td>\n</tr>\n<tr>\n<td><strong>stateOfEmployment</strong> <em>string</em></td>\n<td>For searches where full employment information is not required, but basic information is desired, this can specify the state where they are employed.</td>\n</tr>\n<tr>\n<td><strong>countyOfEmployment</strong> <em>string</em></td>\n<td>For searches where full employment information is not required, but basic information is desired, this can specify the county where they are employed.</td>\n</tr>\n<tr>\n<td><strong>cityOfEmployment</strong> <em>string</em></td>\n<td>For searches where full employment information is not required, but basic information is desired, this can specify the city where they are employed.</td>\n</tr>\n</tbody>\n</table>\n</div><p>Read Only Fields</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>createdDate</strong> <em>date (long)</em></td>\n<td>The epoch date that the record was created.</td>\n</tr>\n<tr>\n<td><strong>createdBy</strong> <em>string</em></td>\n<td>The user who created the record.</td>\n</tr>\n<tr>\n<td><strong>modifiedDate</strong> <em>date (long)</em></td>\n<td>The epoch date that the record was last modified.</td>\n</tr>\n<tr>\n<td><strong>modifiedBy</strong> <em>string</em></td>\n<td>The user who last modified the record.</td>\n</tr>\n<tr>\n<td><strong>version</strong> <em>long</em></td>\n<td>The version associated with the record.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}","applicants"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"d9d44442-5fc9-433d-bcca-5d5ae3e58518","name":"Create Applicant","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"applicantGuid\": null,\n    \"textingEnabled\": false,\n    \"firstName\": \"Louise\",\n    \"middleName\": \"M\",\n    \"noMiddleName\": false,\n    \"lastName\": \"May\",\n    \"generation\": null,\n    \"gender\": \"FEMALE\",\n    \"ssn\": \"XXX-XX-1111\",\n    \"race\": null,\n    \"dateOfBirth\": \"1992-10-22\",\n    \"email\": \"api-sandbox@tazworks.com\",\n    \"phoneNumber\": \"(555) 565-4343\",\n    \"driverLicense\": \"4LD891009\",\n    \"driverLicenseState\": \"AZ\",\n    \"proposedPosition\": \"Head Waiter\",\n    \"proposedSalary\": \"salary\",\n    \"monthlyIncome\": 5000,\n    \"monthlyDebt\": 5350,\n    \"monthlyRent\": 1980,\n    \"desiredUnit\": \"unit\",\n    \"referredBy\": \"Jane Doe\",\n\t\"jobCode\": \"JOBCODE\",\n\t\"jobLocation\": \"Somewhere\",\n\t\"stateOfEmployment\": \"AZ\",\n\t\"cityOfEmployment\": \"Phoenix\",\n\t\"countyOfEmployment\": \"Maricopa\"\n}","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients/{{client-guid}}/applicants"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"applicantGuid\": \"b029c2ac-d701-46c3-ba63-bf00fdb368a7\",\n    \"textingEnabled\": false,\n    \"firstName\": \"Louise\",\n    \"middleName\": \"M\",\n    \"noMiddleName\": false,\n    \"lastName\": \"May\",\n    \"gender\": \"FEMALE\",\n    \"ssn\": \"XXX-XX-1111\",\n    \"dateOfBirth\": \"1992-10-22\",\n    \"email\": \"api-sandbox@tazworks.com\",\n    \"phoneNumber\": \"(555) 565-4343\",\n    \"driverLicense\": \"4LD891009\",\n    \"driverLicenseState\": \"AZ\",\n    \"proposedPosition\": \"Head Waiter\",\n    \"proposedSalary\": \"salary\",\n    \"monthlyIncome\": 5000,\n    \"monthlyDebt\": 5350,\n    \"monthlyRent\": 1980,\n    \"desiredUnit\": \"unit\",\n    \"referredBy\": \"Jane Doe\",\n\t\"jobCode\": \"JOBCODE\",\n\t\"jobLocation\": \"Somewhere\",\n\t\"stateOfEmployment\": \"AZ\",\n\t\"cityOfEmployment\": \"Phoenix\",\n\t\"countyOfEmployment\": \"Maricopa\",\n    \"createdDate\": 1562855735628,\n    \"createdBy\": \"Client Foo\",\n    \"modifiedDate\": 1562855735639,\n    \"modifiedBy\": \"Sally Foo\",\n    \"version\": 1,\n    \"addresses\": [],\n    \"employment\": [],\n    \"education\": [],\n    \"aliases\": [],\n    \"professionalLicenses\": [],\n    \"references\": []\n}"},{"id":"fce183b6-e346-4d96-a0e5-d1192b3db918","name":"Create Applicant with Detail Data","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","type":"text","value":"Bearer {{jwt-token}}"}],"body":{"mode":"raw","raw":"{\n    \"applicantGuid\": null,\n    \"firstName\": \"Sam\",\n    \"middleName\": null,\n    \"noMiddleName\": true,\n    \"lastName\": \"Smith\",\n    \"dateOfBirth\": \"1974-12-12\",\n    \"aliases\": [\n        {\n            \"aliasGuid\": null,\n            \"firstName\": \"Samuel\",\n            \"middleName\": \"P\",\n            \"lastName\": \"Smith\"\n        }\n    ],\n    \"addresses\": [\n        {\n            \"addressType\": \"DOMESTIC\",\n            \"streetOne\": \"220 West Side\",\n            \"city\": \"Chandler\",\n            \"stateOrProvince\": \"AZ\",\n            \"postalCode\": \"85224\"\n        }\n    ],\n    \"professionalLicenses\": [\n        {\n            \"licenseGuid\": null,\n            \"licenseType\": \"HEALTHCARE_COMPLIANCE\",\n            \"stateOfIssue\": \"MN\",\n            \"licenseNumber\": \"NUR-200012\",\n            \"status\": \"active\"\n        },\n        {\n            \"licenseGuid\": null,\n            \"licenseType\": \"HEALTHCARE_COMPLIANCE\",\n            \"stateOfIssue\": \"CT\",\n            \"licenseNumber\": \"H90393-A\",\n            \"status\": \"active\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients/{{client-guid}}/applicants"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"applicantGuid\": \"354d8037-12a4-4209-9a9b-01169ea564ee\",\n    \"textingEnabled\": false,\n    \"firstName\": \"Sam\",\n    \"noMiddleName\": true,\n    \"lastName\": \"Smith\",\n    \"dateOfBirth\": \"1974-12-12\",\n    \"createdDate\": 1598913297341,\n    \"createdBy\": \"John Joe\",\n    \"modifiedDate\": 1598913297353,\n    \"modifiedBy\": \"John Joe\",\n    \"version\": 1,\n    \"addresses\": [\n        {\n            \"addressGuid\": \"645b21c0-8e10-4298-ba30-50476ce445a9\",\n            \"addressType\": \"DOMESTIC\",\n            \"streetOne\": \"220 West Side\",\n            \"city\": \"Chandler\",\n            \"stateOrProvince\": \"AZ\",\n            \"postalCode\": \"85224\",\n            \"country\": \"US\",\n            \"verifyResidence\": false,\n            \"createdDate\": 1598913297344,\n            \"createdBy\": \"John Joe\",\n            \"modifiedDate\": 1598913297344,\n            \"modifiedBy\": \"John Joe\",\n            \"version\": 1\n        }\n    ],\n    \"employment\": [],\n    \"education\": [],\n    \"aliases\": [\n        {\n            \"aliasGuid\": \"6e507fb5-65bd-4ea7-bb25-8d6fce2cc1a9\",\n            \"firstName\": \"Samuel\",\n            \"middleName\": \"P\",\n            \"lastName\": \"Smith\",\n            \"createdDate\": 1598913297346,\n            \"createdBy\": \"John Joe\",\n            \"modifiedDate\": 1598913297346,\n            \"modifiedBy\": \"John Joe\",\n            \"version\": 1\n        }\n    ],\n    \"professionalLicenses\": [\n        {\n            \"licenseGuid\": \"8844fc3e-10c8-412d-8b42-e1ebdced0553\",\n            \"licenseType\": \"HEALTHCARE_COMPLIANCE\",\n            \"stateOfIssue\": \"CT\",\n            \"licenseNumber\": \"H90393-A\",\n            \"validateLicenseFormat\": true,\n            \"status\": \"active\",\n            \"createdDate\": 1598913297349,\n            \"createdBy\": \"John Joe\",\n            \"modifiedDate\": 1598913297349,\n            \"modifiedBy\": \"John Joe\",\n            \"version\": 1\n        },\n        {\n            \"licenseGuid\": \"82ab913c-fbf0-4aa6-8135-2366c23162c5\",\n            \"licenseType\": \"HEALTHCARE_COMPLIANCE\",\n            \"stateOfIssue\": \"MN\",\n            \"licenseNumber\": \"NUR-200012\",\n            \"validateLicenseFormat\": true,\n            \"status\": \"active\",\n            \"createdDate\": 1598913297347,\n            \"createdBy\": \"John Joe\",\n            \"modifiedDate\": 1598913297347,\n            \"modifiedBy\": \"John Joe\",\n            \"version\": 1\n        }\n    ],\n    \"references\": []\n}"}],"_postman_id":"c855fb17-55be-4458-8f3a-38a13408df1f"},{"name":"All Applicants","event":[{"listen":"test","script":{"id":"de7f3f66-73b0-4779-aa24-66e508ea4e4a","exec":[""],"type":"text/javascript"}}],"id":"02b67345-d48c-48bd-98b0-99ee20f3f083","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/applicants?page=0&size=30","description":"<p><strong>Order API</strong></p>\n<p>Get a list of all applicants associated with a client.</p>\n<p>See <strong>Create Applicant</strong> for field descriptions.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}","applicants"],"host":["{{host}}"],"query":[{"description":{"content":"<p>(optional) Specify the page to retrieve.  Defaults to 0.</p>\n","type":"text/plain"},"key":"page","value":"0"},{"description":{"content":"<p>(optional) Specify the number of records per page.  Defaults to 30.</p>\n","type":"text/plain"},"key":"size","value":"30"}],"variable":[]}},"response":[{"id":"118d0368-1deb-4867-9545-89dff390c044","name":"All Applicants","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":{"raw":"https://{{host}}/v1/clients/{{client-guid}}/applicants?page=0&size=30","protocol":"https","host":["{{host}}"],"path":["v1","clients","{{client-guid}}","applicants"],"query":[{"key":"page","value":"0","description":"(optional) Specify the page to retrieve.  Defaults to 0.\n"},{"key":"size","value":"30","description":"(optional) Specify the number of records per page.  Defaults to 30."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"applicantGuid\": \"82a430fd-1e58-4f8d-8185-374b3c685fb2\",\n        \"firstName\": \"Fenrod\",\n        \"middleName\": \"M\",\n        \"lastName\": \"Bullhorn\",\n        \"gender\": \"MALE\",\n        \"dateOfBirth\": \"1990-12-01\",\n        \"phoneNumber\": \"(555) 565-4343\",\n        \"textingEnabled\": false,\n        \"createdDate\": 1555086673000,\n        \"createdBy\": \"Client Foo\",\n        \"modifiedDate\": 1555086673000,\n        \"modifiedBy\": \"Client Foo\",\n        \"version\": 1\n    },\n    {\n        \"applicantGuid\": \"2f704675-dbc9-4d46-a5ad-77ef3d6d7428\",\n        \"firstName\": \"Billy\",\n        \"middleName\": \"M\",\n        \"lastName\": \"Farnsworth\",\n        \"gender\": \"MALE\",\n        \"email\": \"api-sandbox@tazworks.com\",\n        \"phoneNumber\": \"(555) 565-4343\",\n        \"textingEnabled\": false,\n        \"createdDate\": 1555084063000,\n        \"createdBy\": \"Client Foo\",\n        \"modifiedDate\": 1555084063000,\n        \"modifiedBy\": \"Client Foo\",\n        \"version\": 1\n    }\n]"}],"_postman_id":"02b67345-d48c-48bd-98b0-99ee20f3f083"},{"name":"Single Applicant","event":[{"listen":"test","script":{"id":"9124c77b-b82d-47ae-8fd9-9d5a59da1c32","exec":[""],"type":"text/javascript"}}],"id":"a6a877b4-5d81-4d0d-8e64-da1d9160ce5f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/applicants/{{applicant-guid}}","description":"<p><strong>Order API</strong></p>\n<p>Get detail information about an applicant.</p>\n<p>See <strong>Create Applicant</strong> for field descriptions.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}","applicants","{{applicant-guid}}"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"3e7d282a-d1c8-479a-82ff-8582f161cce7","name":"Single Applicant","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/applicants/{{applicant-guid}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"applicantGuid\": \"99b02520-9584-f34r-d63et4r9toyi5\",\n    \"textingEnabled\": false,\n    \"firstName\": \"Sally\",\n    \"middleName\": \"Mid\",\n    \"noMiddleName\": false,\n    \"lastName\": \"Field\",\n    \"generation\": \"JR\",\n    \"gender\": \"FEMALE\",\n    \"ssn\": \"XXX-XX-2929\",\n    \"race\": \"ASIAN\",\n    \"email\": \"api-sandbox@tazworks.com\",\n    \"phoneNumber\": \"(555) 665-4949\",\n    \"driverLicense\": \"4LD891009\",\n    \"driverLicenseState\": \"AZ\",\n    \"proposedPosition\": \"Head Waiter\",\n    \"proposedSalary\": \"salary\",\n    \"monthlyIncome\": 5000,\n    \"monthlyDebt\": 250,\n    \"monthlyRent\": 980,\n    \"desiredUnit\": \"unit\",\n    \"createdDate\": 1554405075000,\n    \"createdBy\": \"Sally Foo\",\n    \"modifiedDate\": 1555434731000,\n    \"modifiedBy\": \"Client Foo\",\n    \"version\": 1,\n    \"addresses\": [\n        {\n            \"addressGuid\": \"99b02520-9e8r-f34r-d63et4r9toyi5\",\n            \"addressType\": \"DOMESTIC\",\n            \"startDate\": \"2011-01-04\",\n            \"endDate\": \"2012-10-06\",\n            \"streetOne\": \"101 WEST END\",\n            \"streetTwo\": \"SUITE 4B\",\n            \"city\": \"FRESNO\",\n            \"stateOrProvince\": \"CA\",\n            \"postalCode\": \"90403\",\n            \"country\": \"US\",\n            \"createdDate\": 1554405651000,\n            \"createdBy\": \"Sally Foo\",\n            \"modifiedDate\": 1554405651000,\n            \"modifiedBy\": \"Sally Foo\",\n            \"version\": 2\n        }\n    ],\n    \"employment\": [\n        {\n            \"employmentGuid\": \"e30b02520-9584-f34r-d63et4r9toyi5\",\n            \"employerName\": \"Toys R Us\",\n            \"currentEmployer\": true,\n            \"mayWeContactEmployer\": false,\n            \"contactPhone\": \"(555) 445-9020\",\n            \"addressType\": \"DOMESTIC\",\n            \"streetOne\": \"909 W 400 S\",\n            \"city\": \"BAKERSFIELD\",\n            \"stateOrProvince\": \"CA\",\n            \"postalCode\": \"84025\",\n            \"country\": \"US\",\n            \"firstNameUsed\": \"Hank\",\n            \"startDate\": \"2010-04-05\",\n            \"jobTitle\": \"Manager\",\n            \"supervisor\": \"John Jones\",\n            \"salary\": 425,\n            \"salaryFrequency\": \"WEEK\",\n            \"salaryType\": \"FULL\",\n            \"createdDate\": 1554406914000,\n            \"createdBy\": \"Sally Foo\",\n            \"modifiedDate\": 1554406914000,\n            \"modifiedBy\": \"Sally Foo\",\n            \"version\": 1\n        }\n    ],\n    \"education\": [\n        {\n            \"educationGuid\": \"156f4520-9584-f34r-d63et4r9toyi5\",\n            \"institutionName\": \"Weber College\",\n            \"registrarPhone\": \"555-555-4959\",\n            \"registrarEmail\": \"api-sandbox@tazworks.com\",\n            \"street\": \"902 Main St.\",\n            \"city\": \"Ogden\",\n            \"stateOrProvince\": \"UT\",\n            \"postalCode\": \"82045\",\n            \"country\": \"US\",\n            \"startDate\": \"2001-08-01\",\n            \"endDate\": \"2004-04-20\",\n            \"firstNameUsed\": \"Derek\",\n            \"lastNameUsed\": \"Jones\",\n            \"degree\": \"Bachelor of Arts\",\n            \"degreeDate\": \"2004-07-01\",\n            \"gpa\": \"3.97\",\n            \"major\": \"Economics\",\n            \"additionalInfo\": \"i did all my homework\",\n            \"createdDate\": 1554406699000,\n            \"createdBy\": \"Sally Foo\",\n            \"modifiedDate\": 1554406699000,\n            \"modifiedBy\": \"Sally Foo\",\n            \"version\": 1\n        }\n    ],\n    \"aliases\": [\n        {\n            \"aliasGuid\": \"5g0eofk0-9584-f34r-d63et4r9toyi5\",\n            \"firstName\": \"Sal\",\n            \"lastName\": \"Field\",\n            \"createdDate\": 1554406171000,\n            \"createdBy\": \"Sally Foo\",\n            \"modifiedDate\": 1554406171000,\n            \"modifiedBy\": \"Sally Foo\",\n            \"version\": 1\n        }\n    ],\n    \"professionalLicenses\": [\n        {\n            \"licenseGuid\": \"dieg30dj0-9584-f34r-d63et4r9toyi5\",\n            \"licenseType\": \"HEALTHCARE_COMPLIANCE\",\n            \"stateOfIssue\": \"UT\",\n            \"licenseNumber\": \"C90-32l\",\n            \"status\": \"active\",\n            \"createdDate\": 1555003623000,\n            \"createdBy\": \"Sally Foo\",\n            \"modifiedDate\": 1555003623000,\n            \"modifiedBy\": \"Sally Foo\",\n            \"version\": 1\n        }\n    ],\n    \"references\": [\n        {\n            \"referenceGuid\": \"k99eur3pl-9584-f34r-d63et4r9toyi5\",\n            \"fullName\": \"Mark Sloane\",\n            \"relationship\": \"Manager\",\n            \"comments\": \"dang!\",\n            \"createdDate\": 1555003694000,\n            \"createdBy\": \"Sally Foo\",\n            \"modifiedDate\": 1555003694000,\n            \"modifiedBy\": \"Sally Foo\",\n            \"version\": 1\n        }\n    ]\n}"}],"_postman_id":"a6a877b4-5d81-4d0d-8e64-da1d9160ce5f"},{"name":"Update Applicant","event":[{"listen":"test","script":{"id":"719150b4-d359-4b57-838e-6917d3ba6a7d","exec":[""],"type":"text/javascript"}}],"id":"88d9fd59-e2a1-4589-ab23-2bb87d6f99c0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"applicantGuid\": \"{{applicant-guid}}\",\n    \"firstName\": \"Sue\",\n    \"middleName\": \"M\",\n    \"noMiddleName\": false,\n    \"lastName\": \"Smith\",\n    \"generation\": null,\n    \"gender\": \"FEMALE\",\n    \"ssn\": \"555-10-1111\",\n    \"race\": null,\n    \"dateOfBirth\": \"1992-10-22\",\n    \"email\": \"api-sandbox@tazworks.com\",\n    \"phoneNumber\": \"(555) 565-4343\",\n    \"driverLicense\": \"123456789\",\n    \"driverLicenseState\": \"AZ\",\n    \"proposedPosition\": \"Astronomer\",\n    \"proposedSalary\": \"salary\",\n    \"monthlyIncome\": 5000,\n    \"monthlyDebt\": 250,\n    \"monthlyRent\": 980,\n    \"desiredUnit\": \"unit\"\n}"},"url":"https://{{host}}/v1/clients/{{client-guid}}/applicants/{{applicant-guid}}","description":"<p><strong>Order API</strong></p>\n<p>Update an applicant. Do a <strong>GET</strong> call and then update the model for the fields you want changed.</p>\n<p>See <strong>Create Applicant</strong> for field descriptions.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}","applicants","{{applicant-guid}}"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"0ae1c009-27ba-4b89-b896-661c4d5888c3","name":"Update Applicant","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"applicantGuid\": \"b029c2ac-d701-46c3-ba63-bf00fdb368a7\",\n    \"textingEnabled\": false,\n    \"firstName\": \"Louise\",\n    \"middleName\": \"M\",\n    \"noMiddleName\": false,\n    \"lastName\": \"May\",\n    \"generation\": null,\n    \"gender\": \"FEMALE\",\n    \"ssn\": \"XXX-XX-1111\",\n    \"race\": null,\n    \"dateOfBirth\": \"1992-10-22\",\n    \"email\": \"api-sandbox@tazworks.com\",\n    \"phoneNumber\": \"(555) 565-4343\",\n    \"driverLicense\": \"4LD891009\",\n    \"driverLicenseState\": \"AZ\",\n    \"proposedPosition\": \"Head Waiter\",\n    \"proposedSalary\": \"salary\",\n    \"monthlyIncome\": 5000,\n    \"monthlyDebt\": 5350,\n    \"monthlyRent\": 1980,\n    \"desiredUnit\": \"unit\"\n}","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients/{{client-guid}}/applicants/{{applicant-guid}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"applicantGuid\": \"b029c2ac-d701-46c3-ba63-bf00fdb368a7\",\n    \"textingEnabled\": false,\n    \"firstName\": \"Louise\",\n    \"middleName\": \"M\",\n    \"noMiddleName\": false,\n    \"lastName\": \"May\",\n    \"gender\": \"FEMALE\",\n    \"ssn\": \"XXX-XX-1111\",\n    \"dateOfBirth\": \"1992-10-22\",\n    \"email\": \"api-sandbox@tazworks.com\",\n    \"phoneNumber\": \"(555) 565-4343\",\n    \"driverLicense\": \"4LD891009\",\n    \"driverLicenseState\": \"AZ\",\n    \"proposedPosition\": \"Head Waiter\",\n    \"proposedSalary\": \"salary\",\n    \"monthlyIncome\": 5000,\n    \"monthlyDebt\": 5350,\n    \"monthlyRent\": 1980,\n    \"desiredUnit\": \"unit\",\n    \"createdDate\": 1562855735628,\n    \"createdBy\": \"Client Foo\",\n    \"modifiedDate\": 1562855735639,\n    \"modifiedBy\": \"Sally Foo\",\n    \"version\": 2,\n    \"addresses\": [],\n    \"employment\": [],\n    \"education\": [],\n    \"aliases\": [],\n    \"professionalLicenses\": [],\n    \"references\": []\n}"}],"_postman_id":"88d9fd59-e2a1-4589-ab23-2bb87d6f99c0"},{"name":"Delete Applicant","event":[{"listen":"test","script":{"id":"906d5505-1238-498e-bf7d-74559a8d650a","exec":[""],"type":"text/javascript"}}],"id":"5aa5e210-1f30-4f3c-aa0d-4e9585ee3515","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/applicants/{{applicant-guid}}","description":"<p><strong>Order API</strong></p>\n<p>Delete an applicant.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}","applicants","{{applicant-guid}}"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"710930d9-4024-4746-bf1d-3b784f7c5759","name":"Delete Applicant","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","type":"text","value":"Bearer {{jwt-token}}"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/applicants/{{applicant-guid}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"\"Applicant has been deleted.\""}],"_postman_id":"5aa5e210-1f30-4f3c-aa0d-4e9585ee3515"}],"id":"e289c90c-851e-4ff8-b203-c31cc1d8fde6","description":"<p>Endpoints allowing you to create and update applicants.</p>\n","event":[{"listen":"prerequest","script":{"id":"a5f81a55-ab27-4a39-ae2c-aeb59583d3f9","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"c888c703-67fa-4802-a98b-55526e7cdbb8","type":"text/javascript","exec":[""]}}],"_postman_id":"e289c90c-851e-4ff8-b203-c31cc1d8fde6","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}}},{"name":"Searches","item":[{"name":"Searches","id":"e7469d05-4d37-43e6-b562-fdc391385253","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/orders/{{order-guid}}/searches","description":"<p><strong>Order API</strong></p>\n<p>Retrieve the searches that are on an order.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}","orders","{{order-guid}}","searches"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"d8216595-f11c-48ad-8143-0c89950ac01e","name":"Searches","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/orders/{{order-guid}}/searches"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"orderSearchGuid\": \"8a4414c0-c89e-47a2-8bec-f613c0a7d7ab\",\n        \"status\": \"pending\",\n        \"type\": \"EDUCATION_VERIFICATION\",\n        \"displayValue\": \"Harvard University\",\n        \"modifiedDate\": 1580248617000,\n        \"processor\": \"Bob, Billy\"\n    },\n    {\n        \"orderSearchGuid\": \"9fad4f95-6c86-48b9-9637-c638d66ae7ca\",\n        \"status\": \"complete\",\n        \"type\": \"NATIONAL_CRIMINAL_DATABASE\",\n        \"displayValue\": \"NATIONWIDE (DOE, JOHN)\",\n        \"modifiedDate\": 1580248617000\n    },\n    {\n        \"orderSearchGuid\": \"76190bc0-e58c-494f-92c5-0c9a47389528\",\n        \"status\": \"complete\",\n        \"type\": \"COUNTY_CRIMINAL_RECORD\",\n        \"displayValue\": \"UT-SALT LAKE (DOE, JOHN)\",\n        \"modifiedDate\": 1580150593000\n    },\n    {\n        \"orderSearchGuid\": \"920a0a15-df12-4cbd-8361-eb639533d812\",\n        \"status\": \"pending review\",\n        \"type\": \"INSTANT_DRIVING\",\n        \"displayValue\": \"Utah\",\n        \"modifiedDate\": 1580248617000,\n        \"processor\": \"Smith, Jo\"\n    },\n    {\n        \"orderSearchGuid\": \"2b4ea5f4-7776-4c45-80e5-57e47be5f75a\",\n        \"status\": \"complete\",\n        \"type\": \"EMPLOYMENT_VERIFICATION\",\n        \"displayValue\": \"DUNDER MIFFLIN INC\",\n        \"modifiedDate\": 1580255620000\n    }\n]"}],"_postman_id":"e7469d05-4d37-43e6-b562-fdc391385253"},{"name":"Search","id":"a03d0263-d38e-42bc-8ddd-63f4ae44e713","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/orders/{{order-guid}}/searches/{{search-guid}}","description":"<p><strong>Order API</strong></p>\n<p>Retrieve detail information about a search that is on an order.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}","orders","{{order-guid}}","searches","{{search-guid}}"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"defbe373-0a95-4c9f-a1ed-b1a87b4b265f","name":"Search","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{jwt-token}}"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/orders/{{order-guid}}/searches/{{search-guid}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"orderSearchGuid\": \"76190bc0-e58c-494f-92c5-0c9a47389528\",\n    \"status\": \"complete\",\n    \"type\": \"COUNTY_CRIMINAL_RECORD\",\n    \"displayName\": \"Tier 1 County Criminal Records Search\",\n    \"displayValue\": \"UT-SALT LAKE (DOE, JOHN)\",\n    \"modifiedDate\": 1580150593000,\n    \"result\": \"yes\",\n    \"flagged\": false,\n    \"createdDate\": 1579901805000,\n    \"completedDate\": 1580150593000\n}"}],"_postman_id":"a03d0263-d38e-42bc-8ddd-63f4ae44e713"},{"name":"Search Results","id":"1a25ccfb-b199-47e8-b238-a37e5bb42667","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/orders/{{order-guid}}/searches/{{search-guid}}/results?resultType=EDITOR","description":"<p><strong>Order API</strong></p>\n<p>Retrieve the raw search results. See <a href=\"##5cea7425-587e-40fc-9136-7f9178efbb89\">Search Results</a> section for models for each search type.</p>\n<p>Optional parameter <code>resultType</code> can be used to specify the source for the search results (Data Provider search results vs Report Search results).  Not all search types support both options.  </p>\n","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}","orders","{{order-guid}}","searches","{{search-guid}}","results"],"host":["{{host}}"],"query":[{"description":{"content":"<p>(optional) specify XML or EDITOR source for results</p>\n","type":"text/plain"},"key":"resultType","value":"EDITOR"}],"variable":[]}},"response":[{"id":"44164138-958a-4126-857c-bf9a104da747","name":"Search Results","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{jwt-token}}"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/orders/{{order-guid}}/searches/{{search-guid}}/results"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"orderSearchGuid\": \"fe7ea3fd-0002-4477-a3a3-0b84463032d4\",\n    \"status\": \"complete\",\n    \"type\": \"COUNTY_CRIMINAL_RECORD\",\n    \"displayName\": \"County Crimes\",\n    \"displayValue\": \"NY-NYOCA (DOE, JOHN M.)\",\n    \"modifiedDate\": 1594679850000,\n    \"result\": \"yes\",\n    \"flagged\": false,\n    \"pendingNotes\": null,\n    \"createdDate\": 1594679809000,\n    \"completedDate\": 1594679850000,\n    \"results\": {\n      \"jurisdictionsSearched\": \"UT-SALT LAKE\",\n      \"records\": [\n            {\n                  \"subject\": {\n                        \"fullName\": \"DOE, JOHN\",\n                        \"dateOfBirth\": \"XXXX-12-12\"\n                  },\n                  \"caseNumber\": \"ABC12345\",\n                  \"jurisdiction\": \"UT-SALT LAKE\",\n                  \"fileDate\": \"2015-05-01\",\n                  \"offenses\": [\n                        {\n                              \"type\": \"Misdemeanor\",\n                              \"countOffense\": \"1. Resist Arrest\",\n                              \"offenseDate\": \"2015-05-01\",\n                              \"dispositionInfo\": {\n                                    \"date\": \"2015-05-03\",\n                                    \"other\": {\n                                          \"Court\": \"Dismissed\"\n                                    }\n                              }\n                        }\n                  ]\n            },\n            {\n                  \"subject\": {\n                        \"fullName\": \"DOE, JOHN\",\n                        \"dateOfBirth\": \"XXXX-12-12\"\n                  },\n                  \"caseNumber\": \"ABC123456\",\n                  \"jurisdiction\": \"UT-SALT LAKE\",\n                  \"fileDate\": \"2011-11-11\",\n                  \"offenses\": [\n                        {\n                              \"type\": \"Felony\",\n                              \"countOffense\": \"1. Assault - Deadly Weapon\",\n                              \"offenseDate\": \"2010-10-10\",\n                              \"dispositionInfo\": {\n                                    \"date\": \"2011-10-31\",\n                                    \"other\": {\n                                          \"Court\": \"Dismissed\"\n                                    }\n                              }\n                        }\n                  ]\n            },\n            {\n                  \"subject\": {\n                        \"fullName\": \"DOE, JOHN\",\n                        \"dateOfBirth\": \"XXXX-12-12\"\n                  },\n                  \"caseNumber\": \"ABC1234567\",\n                  \"jurisdiction\": \"UT-SALT LAKE\",\n                  \"fileDate\": \"2013-12-07\",\n                  \"offenses\": [\n                        {\n                              \"type\": \"Gross Misdemeanor\",\n                              \"countOffense\": \"1. Assault\",\n                              \"offenseDate\": \"2012-12-12\",\n                              \"sentenceInfo\": {\n                                    \"sentence\": \"2 Years No Violations\"\n                              },\n                              \"dispositionInfo\": {\n                                    \"date\": \"2013-03-13\",\n                                    \"other\": {\n                                          \"Court\": \"Guilty\"\n                                    }\n                              }\n                        },\n                        {\n                              \"type\": \"Gross Misdemeanor\",\n                              \"countOffense\": \"2. Assault\",\n                              \"offenseDate\": \"2012-12-12\",\n                              \"sentenceInfo\": {\n                                    \"sentence\": \"2 Years No Violations\"\n                              },\n                              \"dispositionInfo\": {\n                                    \"date\": \"2014-05-06\",\n                                    \"other\": {\n                                          \"Court\": \"Guilty\"\n                                    }\n                              }\n                        }\n                  ]\n            }\n      ]\n    }\n}"},{"id":"2dd724ba-f3da-40d1-9efe-792a1aa3183d","name":"Specifying resultType","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":{"raw":"https://{{host}}/v1/clients/{{client-guid}}/orders/{{order-guid}}/searches/{{search-guid}}/results?resultType=EDITOR","protocol":"https","host":["{{host}}"],"path":["v1","clients","{{client-guid}}","orders","{{order-guid}}","searches","{{search-guid}}","results"],"query":[{"key":"resultType","value":"EDITOR","description":"(optional) specify XML or EDITOR source for results"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"orderSearchGuid\": \"83701342-8f4b-48f3-bb33-59bf1073cdf2\",\n    \"status\": \"complete\",\n    \"type\": \"INSTANT_DRIVING\",\n    \"displayName\": \"Instant Driving Records\",\n    \"displayValue\": \"Utah\",\n    \"modifiedDate\": 1766077994000,\n    \"result\": \"yes\",\n    \"flagged\": false,\n    \"createdDate\": 1766077924000,\n    \"completedDate\": 1766077994000,\n    \"results\": {\n        \"records\": [\n            {\n                \"other\": {\n                    \"resultsData\": \"<html>License plates were found in a box in the basement.</html>\"\n                }\n            }\n        ]\n    }\n}"}],"_postman_id":"1a25ccfb-b199-47e8-b238-a37e5bb42667"},{"name":"All Search Results","id":"43c3fbe2-bd01-4e78-b31b-b8fc2791b1a4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/orders/{{order-guid}}/searches/results","description":"<p><strong>Order API</strong></p>\n<p>Retrieve the raw search results for all the searches on an order. See <a href=\"##5cea7425-587e-40fc-9136-7f9178efbb89\">Search Results</a> section for models for each search type.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}","orders","{{order-guid}}","searches","results"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"92633719-2229-41db-935e-ab24f1b3bc1c","name":"All Search Results","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/orders/{{order-guid}}/searches/results"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"orderSearchGuid\": \"6ea2b5be-38d7-43c9-b459-691d38fc310a\",\n        \"status\": \"pending review\",\n        \"type\": \"INSTANT_DRIVING\",\n        \"displayName\": \"Instant Driving Records\",\n        \"displayValue\": \"Alaska\",\n        \"modifiedDate\": 1748990350000,\n        \"result\": \"yes\",\n        \"flagged\": false,\n        \"createdDate\": 1748990343000\n    },\n    {\n        \"orderSearchGuid\": \"2896a1d7-ad78-476a-967d-7695928b3a94\",\n        \"status\": \"pending review\",\n        \"type\": \"INSTANT_DRIVING\",\n        \"displayName\": \"Instant Driving Records\",\n        \"displayValue\": \"Florida\",\n        \"modifiedDate\": 1748990350000,\n        \"result\": \"yes\",\n        \"flagged\": false,\n        \"createdDate\": 1748990343000\n    }\n]"}],"_postman_id":"43c3fbe2-bd01-4e78-b31b-b8fc2791b1a4"},{"name":"Cancel Search","id":"de9a0467-77a9-4369-a792-90555b981668","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/orders/{{order-guid}}/searches/{{search-guid}}/cancel?removeCharges=true","description":"<p><strong>CRA API</strong></p>\n<p>Cancel a search on an order. If you want to remove un-invoiced charges include the <code>removeCharge</code> parameter and set its value to 'true'.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}","orders","{{order-guid}}","searches","{{search-guid}}","cancel"],"host":["{{host}}"],"query":[{"description":{"content":"<p>(optional) remove un-invoiced charges</p>\n","type":"text/plain"},"key":"removeCharges","value":"true"}],"variable":[]}},"response":[{"id":"8c6db4ca-315c-4b63-8b64-ff5558b8863a","name":"Cancel Search","originalRequest":{"method":"POST","header":[{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/orders/{{order-guid}}/searches/{{search-guid}}/cancel"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"\"This search has been canceled.\""},{"id":"381f4f66-d0ef-4d2d-b7f7-ed1bb9c1a9e0","name":"Cancel Search - Not Allowed","originalRequest":{"method":"POST","header":[{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/orders/{{order-guid}}/searches/{{search-guid}}/cancel"},"status":"Bad Request","code":400,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"\"This search is not in draft status and cannot be canceled.\""}],"_postman_id":"de9a0467-77a9-4369-a792-90555b981668"},{"name":"Set Search Status","id":"c5f5159b-37f0-451a-8fcc-6c31a9c45e97","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"status\": \"complete\",\n    \"flagSearch\": \"true\",\n    \"sendCompletedEmail\": \"true\"\n}","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients/{{client-guid}}/orders/{{order-guid}}/searches/{{search-guid}}/status","description":"<p><strong>CRA API</strong></p>\n<p>Set the status for a search on an order. Client QA Workflow settings will be honored.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>status</strong> <em>string</em></td>\n<td>Status to set the search to.</td>\n</tr>\n<tr>\n<td><strong>flagSearch</strong> <em>boolean</em></td>\n<td>Set to true to flag the search.</td>\n</tr>\n<tr>\n<td><strong>sendCompletedEmail</strong> <em>boolean</em></td>\n<td>If setting the status to complete, set to true to send the completed email. This is required when setting the status to complete.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}","orders","{{order-guid}}","searches","{{search-guid}}","status"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"b3f760a0-1532-4465-bcc2-0a394f0f7921","name":"Set Search Status","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"status\": \"complete\",\n    \"flagSearch\": \"true\",\n    \"sendCompletedEmail\": \"true\"\n}","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients/{{client-guid}}/orders/{{order-guid}}/searches/{{search-guid}}/status"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"orderSearchGuid\": \"18d7ffcf-5cc4-4932-8245-2bdcc90dc637\",\n    \"status\": \"complete\",\n    \"type\": \"STATE_CRIMINAL_COURT\",\n    \"displayName\": \"State Criminal Court Search\",\n    \"displayValue\": \"UTAH (YOST, TYRA API)\",\n    \"modifiedDate\": 1722877732000,\n    \"result\": \"\",\n    \"flagged\": true,\n    \"createdDate\": 1722877732000,\n    \"completedDate\": 1722877765896\n}"}],"_postman_id":"c5f5159b-37f0-451a-8fcc-6c31a9c45e97"},{"name":"Add Notes to Search","id":"b2bcf765-173c-42f3-b7f8-48286f32cc1f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}"}],"body":{"mode":"raw","raw":"{\n    \"internalNotes\": \"An almost psychic ability.\",\n    \"pendingNotes\": \"We are waiting for the donuts.\"\n}","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients/{{client-guid}}/orders/{{order-guid}}/searches/{{search-guid}}/notes","description":"<p><strong>CRA API</strong></p>\n<p>Add internal and/or pending notes to a search.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>internalNotes</strong> <em>string</em></td>\n<td>Internal notes to add to a search.</td>\n</tr>\n<tr>\n<td><strong>pendingNotes</strong> <em>string</em></td>\n<td>Pending notes to add to a search.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}","orders","{{order-guid}}","searches","{{search-guid}}","notes"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"95062212-405d-46fb-92af-0d464112dcb2","name":"Add Notes to Search","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}"}],"body":{"mode":"raw","raw":"{\n    \"internalNotes\": \"An almost psychic ability.\",\n    \"pendingNotes\": \"We are waiting for the donuts.\"\n}","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients/{{client-guid}}/orders/{{order-guid}}/searches/{{search-guid}}/notes"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"\"Notes were successfully added.\""},{"id":"5b4ddb42-eada-46ea-ae2e-02da04a70abf","name":"No permission","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}"}],"body":{"mode":"raw","raw":"{\n    \"internalNotes\": \"An almost psychic ability.\",\n    \"pendingNotes\": \"We are waiting for the donuts.\"\n}","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients/{{client-guid}}/orders/{{order-guid}}/searches/{{search-guid}}/notes"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": \"NOT_AUTHORIZED\",\n    \"message\": \"This endpoint requires API type [CRA] but April Connector has access to ORDER, CLIENT\"\n}"}],"_postman_id":"b2bcf765-173c-42f3-b7f8-48286f32cc1f"},{"name":"Add Monitoring","id":"a6fa4c4a-b736-4ac8-8352-81c83fe7597e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/orders/{{order-guid}}/searches/{{search-guid}}/monitoring","description":"<p><strong>Order API</strong></p>\n<p>Add monitoring to an order.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}","orders","{{order-guid}}","searches","{{search-guid}}","monitoring"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"13c00cfd-ef4e-4899-910e-518c0a145be9","name":"Add Monitoring","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/orders/{{order-guid}}/searches/{{search-guid}}/monitoring"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"monitoringGuid\": \"82ffda0d-d97a-42c2-8a30-b8ad427224e2\",\n    \"fullName\": \"HENSON, SIMSON\",\n    \"searchType\": \"NATIONAL_CRIMINAL_DATABASE\",\n    \"searchName\": \"National Criminal Database Search\",\n    \"originalFileNumber\": 1134,\n    \"orderedDate\": 1776985244152\n}"}],"_postman_id":"a6fa4c4a-b736-4ac8-8352-81c83fe7597e"}],"id":"4c042fe8-e54a-4298-9427-6406342f5b13","description":"<p>Endpoints for getting information about order searches.</p>\n","event":[{"listen":"prerequest","script":{"id":"8ffc8493-26b2-42f2-a4c5-b5c42d8e88a8","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"64025fb9-2348-407a-8747-5f0fa8862438","type":"text/javascript","exec":[""]}}],"_postman_id":"4c042fe8-e54a-4298-9427-6406342f5b13","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}}},{"name":"Attachments","item":[{"name":"All Attachments","id":"fd3c7c95-b958-4f9c-b1db-5e7cc2a0f463","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/orders/{{order-guid}}/attach","description":"<p><strong>Order API</strong></p>\n<p>Retrieve a list of order attachments.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}","orders","{{order-guid}}","attach"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"89dbc9fe-a172-43b5-86d2-b910fdc46e56","name":"All Attachments","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{jwt-token}}"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/orders/{{order-guid}}/attach"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"attachmentName\": \"FRENCH FRY (QuickVerify)\",\n        \"fileName\": \"completed_form.pdf\",\n        \"attachmentGuid\": \"foo-7572df078688\",\n        \"craViewOnly\": false,\n        \"authorizationForm\": false,\n        \"createdDate\": 1648074466000,\n        \"createdBy\": null\n    },\n    {\n        \"attachmentName\": \"FOOBAR (QuickVerify)\",\n        \"fileName\": \"completed_form.pdf\",\n        \"attachmentGuid\": \"foo-7572df078688\",\n        \"craViewOnly\": false,\n        \"authorizationForm\": false,\n        \"createdDate\": 1648074601000,\n        \"createdBy\": null\n    },\n    {\n        \"attachmentName\": \"FRED (QuickVerify)\",\n        \"fileName\": \"another_form.pdf\",\n        \"attachmentGuid\": \"foo-7572df078688\",\n        \"craViewOnly\": false,\n        \"authorizationForm\": false,\n        \"createdDate\": 1648074681000,\n        \"createdBy\": null\n    }\n]"}],"_postman_id":"fd3c7c95-b958-4f9c-b1db-5e7cc2a0f463"},{"name":"Single Attachment","id":"76c4afbf-1651-4964-8e18-0c39a21d10c3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/orders/{{order-guid}}/attach/{{attachment-guid}}","description":"<p><strong>Order API, CRA API</strong></p>\n<p>Retrieve information about a specific order attachment including the Base64 encoded content of the file. Attachments marked as viewable only by CRA will require CRA API permissions.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}","orders","{{order-guid}}","attach","{{attachment-guid}}"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"8fb11213-8df2-40e7-94ad-895058000998","name":"Single Attachment","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{jwt-token}}"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/orders/{{order-guid}}/attach/{{attachment-guid}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"name\": \"My Attachment.pdf\",\n    \"originalFileName\": \"My Attachment.pdf\",\n    \"encodedContent\": \"--base64encodedStuffHere--\",\n    \"authorizationForm\": false,\n    \"craOnly\": true\n}"}],"_postman_id":"76c4afbf-1651-4964-8e18-0c39a21d10c3"},{"name":"Quickapp Attachment","id":"9f555246-cda6-405b-8056-a278d22fd1cf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/orders/{{order-guid}}/attach/quickapp?type=APPLICANT_AUTHORIZATION","description":"<p><strong>Order API</strong></p>\n<p>Retrieve information about one or more QuickApp signed disclosure documents or consent forms including the Base64 encoded content of the form.</p>\n<p>Valid document <code>type</code> values are:</p>\n<ul>\n<li>APPLICANT_AUTHORIZATION</li>\n<li>AUTHORIZATION_FORMS</li>\n<li>E_SIGNATURE</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}","orders","{{order-guid}}","attach","quickapp"],"host":["{{host}}"],"query":[{"key":"type","value":"APPLICANT_AUTHORIZATION"}],"variable":[]}},"response":[{"id":"ff2b915a-ca32-4436-bd63-8c15c6f9bce0","name":"Applicant Authorization","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{jwt-value}}","warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman."}],"url":{"raw":"https://{{host}}/v1/clients/{{client-guid}}/orders/{{order-guid}}/attach/quickapp?type=APPLICANT_AUTHORIZATION","protocol":"https","host":["{{host}}"],"path":["v1","clients","{{client-guid}}","orders","{{order-guid}}","attach","quickapp"],"query":[{"key":"type","value":"APPLICANT_AUTHORIZATION","type":"text"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"signedDate\": 1679345908000,\n        \"content\": \"PGRpdj5IZWxsbyBBY2tub3dsZWRnZW1lbnQgRm9ybS48L2Rpdj48aDM+QWNrbm93bGVkZ21lbnQ8L2gzPjxkaXY+PGRpdj48c2VjdGlvbiBzdHlsZT0iZGlzcGxheTogZmxleCIgY2xhc3M9ImNzcy03b3h3d2UtcmVuZGVyQWNrbm93bGVkZ21lbnQiPjxkaXYgc3R5bGU9ImZsZXg6MCAwIDM1cHgiPjxkaXYgc3R5bGU9ImZsZXg6MCAwIDM1cHgiPjxzdmcgYXJpYS1oaWRkZW49InRydWUiIGZvY3VzYWJsZT0iZmFsc2UiIGRhdGEtcHJlZml4PSJmYXIiIGRhdGEtaWNvbj0iY2hlY2stc3F1YXJlIiBjbGFzcz0ic3ZnLWlubGluZS0tZmEgZmEtY2hlY2stc3F1YXJlIGZhLXctMTQgIiByb2xlPSJpbWciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDQ0OCA1MTIiIHN0eWxlPSJ3aWR0aDoxNnB4IiBjb2xvcj0iIzAwMCI+PHBhdGggZmlsbD0iY3VycmVudENvbG9yIiBkPSJNNDAwIDMySDQ4QzIxLjQ5IDMyIDAgNTMuNDkgMCA4MHYzNTJjMCAyNi41MSAyMS40OSA0OCA0OCA0OGgzNTJjMjYuNTEgMCA0OC0yMS40OSA0OC00OFY4MGMwLTI2LjUxLTIxLjQ5LTQ4LTQ4LTQ4em0wIDQwMEg0OFY4MGgzNTJ2MzUyem0tMzUuODY0LTI0MS43MjRMMTkxLjU0NyAzNjEuNDhjLTQuNzA1IDQuNjY3LTEyLjMwMyA0LjYzNy0xNi45Ny0uMDY4bC05MC43ODEtOTEuNTE2Yy00LjY2Ny00LjcwNS00LjYzNy0xMi4zMDMuMDY5LTE2Ljk3MWwyMi43MTktMjIuNTM2YzQuNzA1LTQuNjY3IDEyLjMwMy00LjYzNyAxNi45Ny4wNjlsNTkuNzkyIDYwLjI3NyAxNDEuMzUyLTE0MC4yMTZjNC43MDUtNC42NjcgMTIuMzAzLTQuNjM3IDE2Ljk3LjA2OGwyMi41MzYgMjIuNzE4YzQuNjY3IDQuNzA2IDQuNjM3IDEyLjMwNC0uMDY4IDE2Ljk3MXoiPjwvcGF0aD48L3N2Zz48L2Rpdj48L2Rpdj48ZGl2IGNsYXNzPSJjc3MtMTcwMTBncy1yZW5kZXJBY2tub3dsZWRnbWVudCI+PGRpdj5JIGFja25vd2xlZGdlIHJlY2VpcHQgb2YgdGhlIDxzcGFuIHN0eWxlPSJmb250LXdlaWdodDogYm9sZCI+QWNrbm93bGVkZ2VtZW50IE5vIFNpZ24gSW5wdXQgRGlzY2xvc3VyZTwvc3Bhbj4gYW5kIGNlcnRpZnkgdGhhdCBJIGhhdmUgcmVhZCBhbmQgdW5kZXJzdGFuZCB0aGlzIGRvY3VtZW50LjwvZGl2PjwvZGl2Pjwvc2VjdGlvbj48L2Rpdj48L2Rpdj48ZGl2IHN0eWxlPSJ0ZXh0LWFsaWduOnJpZ2h0Ij48aHIgY2xhc3M9ImdyYXkiPjxiPltTdWJtaXR0ZWQgb24gTW9uIE1hciAyMCAxNDo1ODoyNyBNRFQgMjAyMyBmcm9tIGFkZHJlc3MgMTI3LjAuMC4xXTwvYj48L2Rpdj48L2Rpdj4=\"\n    }\n]"},{"id":"26906118-87fb-4295-a9a5-a7a76fd48fdd","name":"Authorization Forms","originalRequest":{"method":"GET","header":[{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","type":"text","value":"Bearer {{jwt-token}}"}],"url":{"raw":"https://{{host}}/v1/clients/{{client-guid}}/orders/{{order-guid}}/attach/quickapp?type=AUTHORIZATION_FORMS","protocol":"https","host":["{{host}}"],"path":["v1","clients","{{client-guid}}","orders","{{order-guid}}","attach","quickapp"],"query":[{"key":"type","value":"AUTHORIZATION_FORMS"}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"signedDate\": 1679345895000,\n        \"content\": \"PGRpdj48ZGl2IHN0eWxlPSJ0ZXh0LWFsaWduOiBjZW50ZXIiPjxzcGFuIHN0eWxlPSJmb250LXdlaWdodDogYm9sZDsgZm9udC1mYW1pbHk6IEFyaWFsOyBmb250LXNpemU6z0iZ3JheSI+PGI+W1N1Ym1pdHRlZCBvbiBNb24gTWFyIDIwIDE0OjU4OjE1IE1EVCAyMDIzIGZyb20gYWRkcmVzcyAxMjcuMC4wLjFdPC9iPjwvZGl2PjwvZGl2Pg==\"\n    },\n    {\n        \"signedDate\": 1679345903000,\n        \"content\": \"PHN0eWxlPnN2Zzpub3QoOnJvb3QpLnN2Zy1pbmxpbmUtLWZhIHsgb3ZlcmZsb3c6IHZpc2libGU7IH0uc3ZnLWlubGluZS0tZmEgeyBkaXNwbGF5OiBpbmxpbmUtYmxvY2s7+PG9wdGlvbiB2YWx1ZT0iMzcyIj5XaXNjb25zaW48L29wdGlvbj48b3B0aW9uIHZhbHVlPSIzNzQiPld5b21pbmc8L29wdGlvbj48b3B0aW9uIHZhbHVlPSIwIj5PdXRzaWRlIHRoZSBVUzwvb3B0aW9uPjwvc2VsZWN0PjwvZGl2Pjwvc2VjdGlvbj48c2VjdGlvbj48L3NlY3Rpb24+PC9kaXY+PC9zZWN0aW9uPjwvZGl2PjxzcGFuPjwvc3Bhbj48L2Zvcm0+PC9kaXY+PGRpdiBzdHlsZT0idGV4dC1hbGlnbjpyaWdodCI+PGhyIGNsYXNzPSJncmF5Ij48Yj5bU3VibWl0dGVkIG9uIE1vbiBNYXIgMjAgMTQ6NTg6MjMgTURUIDIwMjMgZnJvbSBhZGRyZXNzIDEyNy4wLjAuMV08L2I+PC9kaXY+PC9kaXY+\"\n    },\n    {\n        \"signedDate\": 1679345917000,\n        \"content\": \"PGRpdj5XaGVyZSB3aWxsIHRoaXMgc2hvdyB1cCwgSSB3b25kZXIuPC9kaXY+PGRpdj5kbyB5b3Ugd2FudCBhIENPTlNVTUVSIGNvcHk/IDxzdmcgYXJpYS1oaWRkZW49InRydWUiIGZvY3VzYWJsZT0iZmFsc2UiIGRhdGEtcHJlZml4PSJmYXIiIGRhdGEtaWNvbj0ic3F1YXJlIiBjbGFzcz0ic3ZnLWlubGluZS0tZmEgZmEtc3F1YXJlIGZhLXctMTQgZmEtbGcgIiByb2xlPSJpbWciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDQ0OCA1MTIiIHN0eWxlPSJ3aWR0aDoyMHB4O3ZlcnRpY2FsLWFsaWduOmJvdHRvbSIgY29sb3I9IiMzMzMzMzMiPjxwYXRoIGZpbGw9ImN1cnJlbnRDb2xvciIgZD0iTTQwMCAzMkg0OEMyMS41IDMyIDAgNTMuNSAwIDgwdjM1MmMwIDI2LjUgMjEuNSA0OCA0OCA0OGgzNTJjMjYuNSAwIDQ4LTIxLjUgNDgtNDhWODBjMC0yNi41LTIxLjUtNDgtNDgtNDh6bS02IDQwMEg1NGMtMy4zIDAtNi0yLjctNi02Vjg2YzAtMy4zIDIuNy02IDYtNmgzNDBjMy4zIDAgNiAyLjcgNiA2djM0MGMwIDMuMy0yLjcgNi02IDZ6Ij48L3BhdGg+PC9zdmc+PC9kaXY+PGgzPkFncmVlbWVudDwvaDM+PGRpdj48ZGl2PjxkaXYgY2xhc3M9ImlucHV0cyI+U2lnbiBoZXJlIFsgPHNwYW4gY2xhc3M9InNpZ25hdHVyZS1lUUEiPmZhYiBiYWI8L3NwYW4+IF08L2Rpdj48ZGl2Pjxicj48L2Rpdj48ZGl2PklUJ1MgSEVSRSBTVEFDWSAtIG5vIHNzbi9waW48L2Rpdj48L2Rpdj48L2Rpdj48ZGl2IHN0eWxlPSJ0ZXh0LWFsaWduOnJpZ2h0Ij48aHIgY2xhc3M9ImdyYXkiPjxiPltTdWJtaXR0ZWQgb24gTW9uIE1hciAyMCAxNDo1ODozNyBNRFQgMjAyMyBmcm9tIGFkZHJlc3MgMTI3LjAuMC4xXTwvYj48L2Rpdj48L2Rpdj4=\"\n    }\n]"}],"_postman_id":"9f555246-cda6-405b-8056-a278d22fd1cf"},{"name":"Add MultipartFile Attachment","id":"b4ac4570-5f3d-43a5-92ad-a95155163bfa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"name\": \"Applicant authorization\",\n\t\"multipartFile\": {{multipart-file}},\n\t\"isAuthorizationForm\": true,\n\t\"isCraOnly\": false\n}"},"url":"https://{{host}}/v1/clients/{{client-guid}}/orders/{{order-guid}}/attach","description":"<p><strong>Order API</strong></p>\n<p>Add an attachment to an order.  Use this endpoint when you want to submit the attachment as a org.springframework.web.multipart.MultipartFile.  </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>name</strong> <em>required, string</em></td>\n<td>the name you want to give the attachment.</td>\n</tr>\n<tr>\n<td><strong>multipartFile</strong> <em>required, MultipartFile</em></td>\n<td>The file to attach.</td>\n</tr>\n<tr>\n<td><strong>isAuthorizationForm</strong> <em>boolean</em></td>\n<td>Set to true if the attachment is an authorization form.  This defaults to false.</td>\n</tr>\n<tr>\n<td><strong>isCraOnly</strong> <em>boolean</em></td>\n<td>Set to true if you want only a CRA to have access to this attachment.  This defaults to false.</td>\n</tr>\n</tbody>\n</table>\n</div><p>The file name is defined as part of the MultipartFile itself and so doesn't need to be supplied separately.</p>\n<p>File size limits and the number of allowed attachments are defined by the CRA and will be validated/enforced when you submit the attachment.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}","orders","{{order-guid}}","attach"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"2b9489e0-1734-4680-8068-23937cf68a22","name":"Add MultipartFile Attachment ","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{jwt-token}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/orders/{{order-guid}}/attach"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"\"This attachment was added to the order.\""}],"_postman_id":"b4ac4570-5f3d-43a5-92ad-a95155163bfa"},{"name":"Add Encoded Attachment","id":"3674dbf8-042d-449e-a773-fa3d610ad4e1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"name\": \"Hello API\",\n\t\"originalFileName\": \"encoded_hello-api.txt\",\n\t\"encodedContent\": \"SGVsbG8sIFRhekFQSQ==\",\n\t\"authorizationForm\": false,\n\t\"craOnly\": false\n}"},"url":"https://{{host}}/v1/clients/{{client-guid}}/orders/{{order-guid}}/attach","description":"<p><strong>Order API</strong></p>\n<p>Add a base64 encoded attachment to an order.  </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>name</strong> <em>required, string</em></td>\n<td>The name for the attachment.</td>\n</tr>\n<tr>\n<td><strong>originalFileName</strong> <em>required, string</em></td>\n<td>The actual file name, with extension.</td>\n</tr>\n<tr>\n<td><strong>encodedContent</strong> <em>required, string</em></td>\n<td>The base64 encoded content of the file.</td>\n</tr>\n<tr>\n<td><strong>authorizationForm</strong> <em>boolean</em></td>\n<td>Set to true if the attachment is an authorization form.  This defaults to false.</td>\n</tr>\n<tr>\n<td><strong>craOnly</strong> <em>boolean</em></td>\n<td>Set to true if you want only a CRA to have access to this attachment.  This defaults to false.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}","orders","{{order-guid}}","attach"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"4018db06-7996-44fa-ae1f-31d95aa21ba8","name":"Add Encoded Attachment","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"name\": \"Hello API\",\n\t\"originalFileName\": \"encoded_hello-api.txt\",\n\t\"encodedContent\": \"SGVsbG8sIFRhekFQSQ==\",\n\t\"authorizationForm\": false,\n\t\"craOnly\": false\n}","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients/{{client-guid}}/orders/{{order-guid}}/attach"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"\"This attachment was added to the order.\""}],"_postman_id":"3674dbf8-042d-449e-a773-fa3d610ad4e1"},{"name":"Delete Attachment","id":"342a069f-4a75-4f5b-ad11-5a03c721195c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/orders/{{order-guid}}/attach/{{attachment-guid}}","description":"<p><strong>CRA API</strong></p>\n<p>Remove an attachment from an order. Use the <strong>GET All Attachments</strong> request to get the guid identifiers for each attachment.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}","orders","{{order-guid}}","attach","{{attachment-guid}}"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"1b1ab036-9c99-4fd7-a2da-da37715455ff","name":"Delete Attachment","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","type":"text","value":"Bearer {{jwt-token}}"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/orders/{{order-guid}}/attach/{{attachment-guid}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"\"The attachment was removed from the order.\""}],"_postman_id":"342a069f-4a75-4f5b-ad11-5a03c721195c"}],"id":"ccb1d137-d0f5-4836-8f2f-eb88d6038302","description":"<p>Endpoints for retrieving, adding and removing order attachments.</p>\n","_postman_id":"ccb1d137-d0f5-4836-8f2f-eb88d6038302","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}}},{"name":"Co-Applicants","item":[{"name":"Co-Applicants","id":"82e66a23-0160-4ca8-b917-38029009a4ba","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/orders/{{order-guid}}/coapplicants","description":"<p><strong>Order API</strong></p>\n<p>Retrieve the co-applicants that are associated with an order.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}","orders","{{order-guid}}","coapplicants"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"600d9343-4cc7-40d4-a251-0f30a6a1896f","name":"Co-Applicants","originalRequest":{"method":"GET","header":[{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/orders/{{order-guid}}/coapplicants"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 13 Apr 2023 18:45:19 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"137"},{"key":"Connection","value":"keep-alive"},{"key":"x-amzn-RequestId","value":"3467c646-e232-422a-ac4b-5cf63d4779ca"},{"key":"x-amzn-ErrorType","value":"AccessDeniedException"},{"key":"x-amz-apigw-id","value":"DVEWAHTZvHcFwVA="}],"cookie":[],"responseTime":null,"body":"{\n    \"orderGuid\": \"00adab18-862f-4e40-a209-0e276433d5be\",\n    \"fileNumber\": 4084,\n    \"coApplicants\": [\n        {\n            \"fileNumber\": 4083,\n            \"orderGuid\": \"14e3edb1-632d-40a5-9a3a-00b3839937b2\",\n            \"firstName\": \"CHOC\",\n            \"lastName\": \"SUNDAE\",\n            \"email\": \"SUNDAE@CHOC.COM\",\n            \"dateOfBirth\": \"1956-08-08\",\n            \"streetOne\": \"300 N BEELINE HWY\",\n            \"city\": \"PAYSON\",\n            \"state\": \"AZ\",\n            \"postalCode\": \"85541\",\n            \"country\": \"United States of America\"\n        },\n        {\n            \"fileNumber\": 4084,\n            \"orderGuid\": \"00adab18-862f-4e40-a209-0e276433d5be\",\n            \"firstName\": \"CHIP\",\n            \"lastName\": \"COOKIE\",\n            \"email\": \"COOKIE@YAHOO.COM\",\n            \"dateOfBirth\": \"1967-01-01\",\n            \"streetOne\": \"300 N BEELINE HWY\",\n            \"city\": \"PAYSON\",\n            \"state\": \"AZ\",\n            \"postalCode\": \"85541\",\n            \"country\": \"United States of America\"\n        },\n        {\n            \"fileNumber\": 4085,\n            \"orderGuid\": \"e6dc0893-8991-4095-81b8-18e788c2cb56\",\n            \"firstName\": \"GLAZED\",\n            \"lastName\": \"DONUT\",\n            \"email\": \"GLAZED@YAHOO.COM\",\n            \"dateOfBirth\": \"1978-03-05\",\n            \"streetOne\": \"300 N BEELINE HWY\",\n            \"city\": \"PAYSON\",\n            \"state\": \"AZ\",\n            \"postalCode\": \"85541\",\n            \"country\": \"United States of America\"\n        }\n    ]\n}"}],"_postman_id":"82e66a23-0160-4ca8-b917-38029009a4ba"},{"name":"Co-Applicants","id":"b7be4eaa-ef9d-4145-98be-f6882dceabb2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"notifyApplicants\": \"true\",\n\t\"orderGuids\": [\n\t\t\"{{order-guid}}\",\n\t\t\"{{another-order-guid}}\"\n\t]\n}"},"url":"https://{{host}}/v1/clients/{{client-guid}}/orders/{{order-guid}}/group","description":"<p><strong>Order API</strong></p>\n<p>If a consumer has co-applicants who will be equally responsible for a rental unit, CRA’s can configure a report to accommodate this.  Orders can be grouped together for multiple individuals applying together.  This can only be done if the client product is a tenant type product and all applicants/orders must be using the same client product.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>notifyApplicants</strong> <em>boolean</em></td>\n<td>Set to false if you don't want the system to notify the applicants once the grouping is successful.  This defaults to true.</td>\n</tr>\n<tr>\n<td><strong>orderGuids</strong> <em>required, collection, uuid</em></td>\n<td>Collection of the identifiers for the orders you want to group together.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}","orders","{{order-guid}}","group"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"9e42d29d-c0d5-4834-956b-8dc3acf1349c","name":"Co-Applicants","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"notifyApplicants\": \"true\",\n\t\"orderGuids\": [\n\t\t\"{{order-guid}}\",\n\t\t\"{{another-order-guid}}\"\n\t]\n}","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients/{{client-guid}}/orders/{{order-guid}}/group"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"\"These orders are now part of a co-applicant group.\""},{"id":"2d94b3f8-75fc-4edc-ae5b-805e9ce7dec5","name":"Co-Applicants Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"notifyApplicants\": \"true\",\n\t\"orderGuids\": [\n\t\t\"{{order-guid}}\",\n\t\t\"{{another-order-guid}}\"\n\t]\n}","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients/{{client-guid}}/orders/{{order-guid}}/group"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": \"VALIDATION_EXCEPTION\",\n    \"message\": \"One or more of these orders already belong to different co-applicant groups.\"\n}"}],"_postman_id":"b7be4eaa-ef9d-4145-98be-f6882dceabb2"},{"name":"Notify Applicant","id":"5ac6fab8-cf33-483c-af01-cafaaf53fb40","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/orders/{{order-guid}}/notify","description":"<p><strong>Order API</strong></p>\n<p>Notify (send an invitation) to the applicant of a QuickApp order.  If texting is enabled for the applicant, a text message invitation will also be sent.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}","orders","{{order-guid}}","notify"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"b279f3ee-b4dd-4aca-b4fd-3539eaafb070","name":"Notify Applicants","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/orders/{{order-guid}}/notify"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"\"The applicants for this order have been notified.\""}],"_postman_id":"5ac6fab8-cf33-483c-af01-cafaaf53fb40"}],"id":"c1d5efe8-5b06-40b7-b3cd-5108ae2c1f79","description":"<p>Endpoints for working with the co-applicants of an order.</p>\n","_postman_id":"c1d5efe8-5b06-40b7-b3cd-5108ae2c1f79","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}}},{"name":"Order Applicants","item":[{"name":"Applicant on Order","id":"57d6cc91-88b8-45e5-89fd-656248c188a6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/order/{{order-guid}}/applicant","description":"<p><strong>CRA API</strong></p>\n<p>Retrieve basic information about the applicant as it appears on the order. This can be used to assist with a PUT to update the applicant on the order.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}","order","{{order-guid}}","applicant"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"ae412bcf-5b1e-4aae-8236-0c73e6cf371b","name":"Applicant on Order","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/order/{{order-guid}}/applicant"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"firstName\": \"DENNIS\",\n    \"lastName\": \"FLOOB\",\n    \"ssn\": \"XXX-XX-5853\",\n    \"dateOfBirth\": \"1981-09-12\",\n    \"noMiddleName\": false,\n    \"altIdentifierLabel\": \"National ID\",\n    \"altIdentifier\": \"2001\",\n    \"altIdentifierLabel2\": \"Passport\",\n    \"altIdentifier2\": \"1234\",\n    \"addresses\": [\n        {\n            \"addressType\": \"DOMESTIC\",\n            \"streetOne\": \"FOO STREET\",\n            \"city\": \"PHOENIX\",\n            \"state\": \"AZ\",\n            \"postalCode\": \"85332\",\n            \"country\": \"United States of America\"\n        },\n        {\n            \"addressType\": \"DOMESTIC\",\n            \"streetOne\": \"200 WEST DRIVE\",\n            \"city\": \"DENVER\",\n            \"state\": \"CO\",\n            \"postalCode\": \"80202\",\n            \"country\": \"United States of America\"\n        }\n    ]\n}"}],"_postman_id":"57d6cc91-88b8-45e5-89fd-656248c188a6"},{"name":"Update Applicant","id":"01bbc0f0-c401-46c5-b87f-9069aafafaf6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}"}],"body":{"mode":"raw","raw":"{\n    \"firstName\": \"Mary\",\n    \"middleName\": \"Jane\",\n    \"noMiddleName\": false,\n    \"lastName\": \"Doe\",\n    \"ssn\": \"111-11-3333\",\n    \"generation\": \"SR\",\n    \"dateOfBirth\": \"1974-03-12\",\n    \"gender\": \"FEMALE\",\n    \"race\": \"GREEN\",\n    \"phoneNumber\": \"(555) 556-5858\",\n    \"updateOriginalApplicant\": true\n}","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients/{{client-guid}}/order/{{order-guid}}/applicant","description":"<p><strong>CRA API</strong></p>\n<p>Update the applicant on an existing order with the option of updating the original applicant this order was submitted for (if the order was submitted through the TazAPI).</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>firstName</strong> <em>string</em></td>\n<td>Applicant first name.</td>\n</tr>\n<tr>\n<td><strong>middleName</strong> <em>string</em></td>\n<td>Applicant middle name.</td>\n</tr>\n<tr>\n<td><strong>noMiddleName</strong> <em>boolean</em></td>\n<td>Set to true if the applicant has no middle name. This field will be necessary for searches which require a middle name. This defaults to false.</td>\n</tr>\n<tr>\n<td><strong>lastName</strong> <em>string</em></td>\n<td>Applicant last name.</td>\n</tr>\n<tr>\n<td><strong>generation</strong> <em>string</em></td>\n<td>Valid generation values are <em>JR</em>, <em>SR</em>, <em>I</em>, <em>II</em>, <em>III</em>, and <em>IV</em>.</td>\n</tr>\n<tr>\n<td><strong>ssn</strong> <em>string</em></td>\n<td>Applicant social security number.</td>\n</tr>\n<tr>\n<td><strong>dateOfBirth</strong> <em>date (string)</em></td>\n<td>The <code>yyyy-MM-dd</code> string representation of the date of birth.</td>\n</tr>\n<tr>\n<td><strong>gender</strong> <em>string</em></td>\n<td><em>MALE</em> or <em>FEMALE</em>.</td>\n</tr>\n<tr>\n<td><strong>race</strong> <em>string</em></td>\n<td>Applicant race. Which values are valid will depend on the product associated with the order.</td>\n</tr>\n<tr>\n<td><strong>phoneNumber</strong> <em>string</em></td>\n<td>Applicant's phone number. The number should follow a (###) ##-#### format.</td>\n</tr>\n<tr>\n<td><strong>updateOriginalApplicant</strong> <em>boolean</em></td>\n<td>Set to true to update the original applicant this order was submitted for. If the order was not created through the TazAPI then there won't be an original applicant and this flag will be ignored. This will default to false.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}","order","{{order-guid}}","applicant"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"3798c61a-b075-4c6d-8ac1-71644f023166","name":"Update Applicant","originalRequest":{"method":"PUT","header":[{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"firstName\": \"Mary\",\n    \"middleName\": \"Jane\",\n    \"noMiddleName\": false,\n    \"lastName\": \"Doe\",\n    \"ssn\": \"111-11-3333\",\n    \"generation\": \"SR\",\n    \"dateOfBirth\": \"1974-03-12\",\n    \"gender\": \"FEMALE\",\n    \"race\": \"GREEN\",\n    \"phoneNumber\": \"(555) 556-5858\",\n    \"updateOriginalApplicant\": true\n}","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients/{{client-guid}}/order/{{order-guid}}/applicant"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"firstName\": \"Mary\",\n    \"middleName\": \"Jane\",\n    \"noMiddleName\": false,\n    \"lastName\": \"Doe\",\n    \"ssn\": \"XXX-XX-3333\",\n    \"generation\": \"SR\",\n    \"dateOfBirth\": \"1974-03-12\",\n    \"gender\": \"FEMALE\",\n    \"race\": \"GREEN\",\n    \"phoneNumber\": \"(555) 556-5858\",\n    \"updateOriginalApplicant\": true\n}"}],"_postman_id":"01bbc0f0-c401-46c5-b87f-9069aafafaf6"},{"name":"Add Alias to Order","id":"1c4762e5-a28f-4b5c-b067-2388734a3bd9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"firstName\": \"Moses\",\n    \"middleName\": \"George\",\n    \"lastName\": \"Mohr\",\n    \"generation\": \"JR\",\n    \"ssn\": \"111-22-3333\",\n    \"dateOfBirth\": \"1992-12-12\",\n    \"updateOriginalApplicant\": false\n}","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients/{{client-guid}}/order/{{order-guid}}/applicant/alias","description":"<p><strong>CRA API</strong></p>\n<p>Add an alias to the applicant on an existing order with the option of updating the original applicant this order was submitted for (if the order was submitted through the TazAPI).</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>firstName</strong> <em>string</em></td>\n<td>Alias first name.</td>\n</tr>\n<tr>\n<td><strong>middleName</strong> <em>string</em></td>\n<td>Alias middle name.</td>\n</tr>\n<tr>\n<td><strong>lastName</strong> <em>string</em></td>\n<td>Alias last name.</td>\n</tr>\n<tr>\n<td><strong>generation</strong> <em>string</em></td>\n<td>Valid generation values are <em>JR</em>, <em>SR</em>, <em>I</em>, <em>II</em>, <em>III</em>, and <em>IV</em>.</td>\n</tr>\n<tr>\n<td><strong>ssn</strong> <em>string</em></td>\n<td>Alias social security number.</td>\n</tr>\n<tr>\n<td><strong>dateOfBirth</strong> <em>date (string)</em></td>\n<td>The <code>yyyy-MM-dd</code> string representation of the date of birth.</td>\n</tr>\n<tr>\n<td><strong>updateOriginalApplicant</strong> <em>boolean</em></td>\n<td>Set to true to add the alias to the original applicant this order was submitted for. If the order was not created through the TazAPI then there won't be an original applicant and this flag will be ignored. This will default to false.</td>\n</tr>\n</tbody>\n</table>\n</div><p>Read Only Fields</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>aliasGuid</strong> <em>uuid</em></td>\n<td>If you flagged the alias to update the original applicant, this will be the identifier for the new alias that got created on the original applicant.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}","order","{{order-guid}}","applicant","alias"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"f3f17f22-a96b-4c91-8f47-d4ac6ec593ec","name":"Add Alias Update Original","originalRequest":{"method":"POST","header":[{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"firstName\": \"Moses\",\n    \"middleName\": \"George\",\n    \"lastName\": \"Mohr\",\n    \"generation\": \"JR\",\n    \"ssn\": \"111-22-3333\",\n    \"dateOfBirth\": \"1992-12-12\",\n    \"updateOriginalApplicant\": true\n}","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients/{{client-guid}}/orders/{{order-guid}}/applicant/alias"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"aliasGuid\": \"5f411578-d571-4bf2-9a15-5a91ee9ad33a\",\n    \"firstName\": \"Moses\",\n    \"middleName\": \"George\",\n    \"lastName\": \"Mohr\",\n    \"generation\": \"JR\",\n    \"ssn\": \"111-22-3333\",\n    \"dateOfBirth\": \"1992-12-12\"\n}"},{"id":"4a0a8bd3-5bcc-4412-96c9-4a1f6bc4a092","name":"Add Alias to Order","originalRequest":{"method":"POST","header":[{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"firstName\": \"Moses\",\n    \"middleName\": \"George\",\n    \"lastName\": \"Mohr\",\n    \"generation\": \"JR\",\n    \"ssn\": \"111-22-3333\",\n    \"dateOfBirth\": \"1992-12-12\"\n}","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients/{{client-guid}}/orders/{{order-guid}}/applicant/alias"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"firstName\": \"Moses\",\n    \"middleName\": \"George\",\n    \"lastName\": \"Mohr\",\n    \"generation\": \"JR\",\n    \"ssn\": \"111-22-3333\",\n    \"dateOfBirth\": \"1992-12-12\"\n}"}],"_postman_id":"1c4762e5-a28f-4b5c-b067-2388734a3bd9"},{"name":"Pull Applicant From Order","id":"a3e9eb7d-8593-4250-8ca2-af9abb95d242","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/order/{{order-guid}}/applicant/pullFromOrder","description":"<p><strong>CRA API, Order API</strong></p>\n<p>For an order which was created in Instascreen, this will pull all applicant information into the API so that searches can be added to the order using the API. New orders can also be submitted using the applicant.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}","order","{{order-guid}}","applicant","pullFromOrder"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"9677567b-4226-4dc3-9fb6-b6111ddb7230","name":"Pull Applicant From Order","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/order/{{order-guid}}/applicant/pullFromOrder"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"applicantGuid\": \"c4775458-ccd1-4c7b-a0f7-f83c198d55f3\",\n    \"textingEnabled\": false,\n    \"firstName\": \"LUCRETIA\",\n    \"noMiddleName\": false,\n    \"lastName\": \"BROWN\",\n    \"ssn\": \"XXX-XX-3332\",\n    \"dateOfBirth\": \"1990-12-24\",\n    \"createdDate\": 1753137261406,\n    \"createdBy\": \"Stacy Connector Stacy Integrator\",\n    \"modifiedDate\": 1753137261532,\n    \"modifiedBy\": \"Stacy Connector Stacy Integrator\",\n    \"version\": 1,\n    \"addresses\": [\n        {\n            \"addressGuid\": \"58f82301-d90a-431a-9a62-0f5a5e69fad5\",\n            \"addressType\": \"DOMESTIC\",\n            \"startDate\": \"2000-01-01\",\n            \"endDate\": \"2005-01-01\",\n            \"streetOne\": \"100 SEVORN DR\",\n            \"city\": \"GILROY\",\n            \"stateOrProvince\": \"CA\",\n            \"postalCode\": \"95021\",\n            \"country\": \"United States of America\",\n            \"verifyResidence\": true,\n            \"landlordName\": \"GOOD LANDLORD\",\n            \"contactCode\": \"GOODY\",\n            \"landlordPhone\": \"(555) 233-4949\",\n            \"landlordEmail\": \"GOODIE@GMAIL.COM\",\n            \"landlordFax\": \"(555) 122-6847\",\n            \"monthlyRent\": 2000,\n            \"namesOfResidents\": \"BROWN, LUCRETIA\",\n            \"residenceType\": \"RENT\",\n            \"createdDate\": 1753137261469,\n            \"createdBy\": \"Stacy Connector Stacy Integrator\",\n            \"modifiedDate\": 1753137261532,\n            \"modifiedBy\": \"Stacy Connector Stacy Integrator\",\n            \"version\": 1\n        }\n    ],\n    \"employment\": [\n        {\n            \"employmentGuid\": \"62f97d02-1647-493e-b0ba-75630d7d71ea\",\n            \"employerName\": \"ACME DONUTS\",\n            \"contactCode\": \"ACMEDONUT\",\n            \"currentEmployer\": true,\n            \"mayWeContactEmployer\": true,\n            \"contactPhone\": \"(888) 434-5858\",\n            \"contactEmail\": \"ACME@DONUTS.ORG\",\n            \"contactFax\": \"(881) 111-2323\",\n            \"addressType\": \"DOMESTIC\",\n            \"streetOne\": \"101 MAIN STREET\",\n            \"city\": \"SENTINEL\",\n            \"stateOrProvince\": \"AL\",\n            \"postalCode\": \"91028\",\n            \"country\": \"United States of America\",\n            \"firstNameUsed\": \"LUCRETIA\",\n            \"lastNameUsed\": \"BROWN\",\n            \"supervisor\": \"SUPER SUE\",\n            \"salaryFrequency\": \"WEEK\",\n            \"salaryType\": \"FULL\",\n            \"reasonForLeaving\": \"\",\n            \"createdDate\": 1753137261507,\n            \"createdBy\": \"Stacy Connector Stacy Integrator\",\n            \"modifiedDate\": 1753137261507,\n            \"modifiedBy\": \"Stacy Connector Stacy Integrator\",\n            \"version\": 0\n        }\n    ],\n    \"education\": [\n        {\n            \"educationGuid\": \"e86153b8-03ec-4dda-a6ac-ff2e85effc75\",\n            \"institutionName\": \"EASY UNIVERSITY\",\n            \"contactCode\": \"EASY-U\",\n            \"registrarPhone\": \"(444) 545-2828\",\n            \"registrarEmail\": \"EASYPEASY@EASY.EDU\",\n            \"addressType\": \"DOMESTIC\",\n            \"streetOne\": \"998 S HARMLESS WAY\",\n            \"city\": \"BEVERLY HILLS\",\n            \"stateOrProvince\": \"CA\",\n            \"postalCode\": \"90210\",\n            \"country\": \"United States of America\",\n            \"startDate\": \"2002-01-01\",\n            \"endDate\": \"2006-01-01\",\n            \"degree\": \"BA\",\n            \"degreeDate\": \"2006-01-01\",\n            \"gpa\": \"4.0\",\n            \"createdDate\": 1753137261490,\n            \"createdBy\": \"Stacy Connector Stacy Integrator\",\n            \"modifiedDate\": 1753137261490,\n            \"modifiedBy\": \"Stacy Connector Stacy Integrator\",\n            \"version\": 0\n        }\n    ],\n    \"aliases\": [\n        {\n            \"firstName\": \"LUCY\",\n            \"lastName\": \"BROWN\",\n            \"ssn\": \"XXX-XX-3332\",\n            \"dateOfBirth\": \"1990-12-24\",\n            \"aliasGuid\": \"45e25a7a-1922-4813-be14-93e4cfb584c6\",\n            \"createdDate\": 1753137261467,\n            \"createdBy\": \"Stacy Connector Stacy Integrator\",\n            \"modifiedDate\": 1753137261467,\n            \"modifiedBy\": \"Stacy Connector Stacy Integrator\",\n            \"version\": 0\n        }\n    ],\n    \"professionalLicenses\": [\n        {\n            \"licenseGuid\": \"99e379d7-9126-4787-b57d-819d95a10766\",\n            \"licenseType\": \"INSTANT_DRIVER\",\n            \"stateOfIssue\": \"AR\",\n            \"licenseNumber\": \"033333245\",\n            \"validateLicenseFormat\": true,\n            \"motorVehicleHistory\": \"THREE_YEARS\",\n            \"createdDate\": 1753137261525,\n            \"createdBy\": \"Stacy Connector Stacy Integrator\",\n            \"modifiedDate\": 1753137261525,\n            \"modifiedBy\": \"Stacy Connector Stacy Integrator\",\n            \"version\": 0\n        },\n        {\n            \"licenseGuid\": \"5e18cc19-a0a7-409f-92bd-2af9cd34c582\",\n            \"licenseType\": \"HEALTHCARE_COMPLIANCE\",\n            \"stateOfIssue\": \"AL\",\n            \"licenseNumber\": \"909-abe\",\n            \"validateLicenseFormat\": true,\n            \"createdDate\": 1753137261526,\n            \"createdBy\": \"Stacy Connector Stacy Integrator\",\n            \"modifiedDate\": 1753137261526,\n            \"modifiedBy\": \"Stacy Connector Stacy Integrator\",\n            \"version\": 0\n        },\n        {\n            \"licenseGuid\": \"b8d28b62-1701-4561-85c5-4d38ab721f11\",\n            \"licenseType\": \"PROFESSIONAL\",\n            \"stateOfIssue\": \"VA\",\n            \"licenseNumber\": \"1112\",\n            \"validateLicenseFormat\": true,\n            \"certificationType\": \"WELDING\",\n            \"status\": \"ACTIVE\",\n            \"createdDate\": 1753137261529,\n            \"createdBy\": \"Stacy Connector Stacy Integrator\",\n            \"modifiedDate\": 1753137261529,\n            \"modifiedBy\": \"Stacy Connector Stacy Integrator\",\n            \"version\": 0\n        },\n        {\n            \"licenseGuid\": \"6b2dfa6e-0f1d-4a88-be38-77220ee0e914\",\n            \"licenseType\": \"HEALTHCARE_COMPLIANCE\",\n            \"stateOfIssue\": \"AL\",\n            \"licenseNumber\": \"909-abe\",\n            \"validateLicenseFormat\": true,\n            \"createdDate\": 1753137261527,\n            \"createdBy\": \"Stacy Connector Stacy Integrator\",\n            \"modifiedDate\": 1753137261527,\n            \"modifiedBy\": \"Stacy Connector Stacy Integrator\",\n            \"version\": 0\n        }\n    ],\n    \"references\": [\n        {\n            \"referenceGuid\": \"ea33a37d-f713-4b44-872e-91878cbde96c\",\n            \"referenceType\": \"PROFESSIONAL\",\n            \"fullName\": \"DEVON MONROE\",\n            \"relationship\": \"BOSS\",\n            \"phone\": \"(555) 686-2929\",\n            \"createdDate\": 1753137261522,\n            \"createdBy\": \"Stacy Connector Stacy Integrator\",\n            \"modifiedDate\": 1753137261522,\n            \"modifiedBy\": \"Stacy Connector Stacy Integrator\",\n            \"version\": 0\n        },\n        {\n            \"referenceGuid\": \"0490de02-d26e-44d4-87f3-88a85c9398db\",\n            \"referenceType\": \"GENERAL\",\n            \"fullName\": \"HENRY JONES\",\n            \"relationship\": \"NEIGHBOR\",\n            \"phone\": \"(555) 111-2222\",\n            \"createdDate\": 1753137261519,\n            \"createdBy\": \"Stacy Connector Stacy Integrator\",\n            \"modifiedDate\": 1753137261519,\n            \"modifiedBy\": \"Stacy Connector Stacy Integrator\",\n            \"version\": 0\n        },\n        {\n            \"referenceGuid\": \"4ba78a0d-fdb3-4e5b-9fd9-5798a81406a1\",\n            \"referenceType\": \"PERSONAL\",\n            \"fullName\": \"LAMONT HILL\",\n            \"relationship\": \"COUSIN\",\n            \"phone\": \"(555) 555-4949\",\n            \"createdDate\": 1753137261520,\n            \"createdBy\": \"Stacy Connector Stacy Integrator\",\n            \"modifiedDate\": 1753137261520,\n            \"modifiedBy\": \"Stacy Connector Stacy Integrator\",\n            \"version\": 0\n        }\n    ]\n}"}],"_postman_id":"a3e9eb7d-8593-4250-8ca2-af9abb95d242"}],"id":"34f96abd-4a83-4c5a-bd1b-f93d19b76786","description":"<p>Endpoints for adding or updating applicant information on a specific order.</p>\n","_postman_id":"34f96abd-4a83-4c5a-bd1b-f93d19b76786","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}}},{"name":"All Orders","id":"3136782b-9e8c-417b-96ed-41f35436e577","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/orders?page=0&size=30&orderStatus=COMPLETE&orderedSinceDate=2020-02-01&modifiedSinceDate=2020-02-01&fileNumber=12345&externalIdentifier=ABCD-1234-XYZ","description":"<p><strong>Order API</strong></p>\n<p>Retrieve a list of a client's orders.  </p>\n<p><code>orderStatus</code> values for filtering:</p>\n<ul>\n<li>APPLICANT_PENDING</li>\n<li>APPLICANT_READY</li>\n<li>CANCELED</li>\n<li>COMPLETE</li>\n<li>NEW</li>\n<li>PENDING</li>\n<li>PENDING_REVIEW</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}","orders"],"host":["{{host}}"],"query":[{"description":{"content":"<p>Specify the page to retrieve.  Defaults to 0.</p>\n","type":"text/plain"},"key":"page","value":"0"},{"description":{"content":"<p>Specify the number of records per page.  Defaults to 30.</p>\n","type":"text/plain"},"key":"size","value":"30"},{"description":{"content":"<p>(optional) Filter by order status</p>\n","type":"text/plain"},"key":"orderStatus","value":"COMPLETE"},{"description":{"content":"<p>(optional) Enter the <code>yyyy-MM-dd</code> string representation of the date to filter for orders ordered since that date.</p>\n","type":"text/plain"},"key":"orderedSinceDate","value":"2020-02-01"},{"description":{"content":"<p>(optional) Enter the <code>yyyy-MM-dd</code> string representation of the date to filter for orders ordered modified that date.</p>\n","type":"text/plain"},"key":"modifiedSinceDate","value":"2020-02-01"},{"description":{"content":"<p>(optional) Filter by file number</p>\n","type":"text/plain"},"key":"fileNumber","value":"12345"},{"description":{"content":"<p>(optional) Filter by external identifier</p>\n","type":"text/plain"},"key":"externalIdentifier","value":"ABCD-1234-XYZ"}],"variable":[]}},"response":[{"id":"f8042640-1ee3-4ba4-ac04-aa885dadfd1d","name":"All Orders","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":{"raw":"https://{{host}}/v1/clients/{{client-guid}}/orders?page=0&size=2","protocol":"https","host":["{{host}}"],"path":["v1","clients","{{client-guid}}","orders"],"query":[{"key":"page","value":"0","description":"(optional) Specify the page to retrieve.  Defaults to 0."},{"key":"size","value":"2","description":"(optional) Specify the number of records per page.  Defaults to 30."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"orderGuid\": \"c0834bac-0519-44b3-bf8f-b9d686ac0da3\",\n        \"fileNumber\": 1708,\n        \"orderStatus\": \"new\",\n        \"orderType\": \"Employment\",\n        \"orderedDate\": 1574289399000,\n        \"reportDecision\": \"Pass\",\n        \"applicantName\": \"FOO, PHIL\",\n        \"clientName\": \"Api Client\",\n        \"clientCode\": \"API-CLNT\",\n        \"productName\": \"Investigative Custom packaged\",\n        \"requestedBy\": \"Foo Connector Foo Integrator\",\n        \"searchFlagged\": false,\n        \"createdDate\": 1574289399000,\n        \"createdBy\": \"Foo Connector Foo Integrator\",\n        \"modifiedDate\": 1574289404000,\n        \"modifiedBy\": \"Foo Connector Foo Integrator\"\n    },\n    {\n        \"orderGuid\": \"d9a9c9bd-cb65-440b-aec9-a43b787ec0e1\",\n        \"fileNumber\": 1707,\n        \"orderStatus\": \"New\",\n        \"orderType\": \"Employment\",\n        \"orderedDate\": 1574289225000,\n        \"applicantName\": \"A-CR-BASIC2, CARMEN\",\n        \"clientName\": \"Api Client\",\n        \"clientCode\": \"API-CLNT\",\n        \"productName\": \"Investigative Custom packaged\",\n        \"requestedBy\": \"Foo Connector Foo Integrator\",\n        \"searchFlagged\": false,\n        \"createdDate\": 1574289225000,\n        \"createdBy\": \"Foo Connector Foo Integrator\",\n        \"modifiedDate\": 1574289225000,\n        \"modifiedBy\": \"Foo Connector Foo Integrator\"\n    }\n]"}],"_postman_id":"3136782b-9e8c-417b-96ed-41f35436e577"},{"name":"Single Order","id":"27746fb2-30a9-4d66-abd9-7ea0456c8eda","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/orders/{{order-guid}}","description":"<p><strong>Order API</strong></p>\n<p>Retrieve detailed information about a specific order.  This will not include results.</p>\n<p>Possible Order Statuses:</p>\n<ul>\n<li>app-pending</li>\n<li>app-ready</li>\n<li>canceled</li>\n<li>client message</li>\n<li>complete</li>\n<li>dispatched qc</li>\n<li>draft</li>\n<li>end-user</li>\n<li>internal-error</li>\n<li>new</li>\n<li>pending</li>\n<li>pending review</li>\n<li>pre-pull</li>\n<li>qa review</li>\n<li>archived</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}","orders","{{order-guid}}"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"9575fc03-c2cf-48e4-bb78-d0e12fa017de","name":"Single Order","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/orders/{{order-guid}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"orderGuid\": \"9ad99788-0db6-4b40-8805-605b21fbc454\",\n    \"fileNumber\": 1710,\n    \"orderStatus\": \"new\",\n    \"orderType\": \"Volunteer\",\n    \"orderedDate\": 1574704924000,\n    \"reportDecision\": \"Pass\",\n    \"generalReportReference\": \"r900-bew\",\n    \"externalIdentifier\": \"REF-1998\",\n    \"applicantName\": \"BELLINGHAM, AURA\",\n    \"clientName\": \"Api Quickapp Client\",\n    \"clientCode\": \"API-QAP\",\n    \"productName\": \"County Criminal Records Product\",\n    \"requestedBy\": \"October Connector October Integrator\",\n    \"searchFlagged\": false,\n    \"createdDate\": 1574704924000,\n    \"createdBy\": \"October Connector October Integrator\",\n    \"modifiedDate\": 1574705076000,\n    \"modifiedBy\": \"Foo User\",\n    \"applicantEmail\": \"success@simulator.amazonses.com\",\n    \"applicantDateOfBirth\": \"1982-01-13\",\n    \"applicantPhone\": \"(555) 565-4343\",\n    \"totalCharges\": 5.9,\n    \"orderNotes\": \"Bob has left the building.\",\n    \"includedSearches\": [\n        \"Social Security Search\",\n        \"County Criminal Records Search\",\n        \"Investigative Custom\",\n        \"Credentials Custom\"\n    ],\n    \"searchDetails\": [\n        {\n            \"searchName\": \"Social Security Search\",\n            \"detailInfo\": [\n                \"Equifax\"\n            ]\n        },\n        {\n            \"searchName\": \"Investigative Custom\",\n            \"detailInfo\": [\n                \"Custom Crim 2\"\n            ]\n        },\n        {\n            \"searchName\": \"Credentials Custom\",\n            \"detailInfo\": [\n                \"Custom Credential\"\n            ]\n        }\n    ],\n    \"quickappInfo\": {\n        \"daysActive\": 14,\n        \"dateExpires\": 1575914365000,\n        \"dateLastNotifiedByEmail\": 1574704766000,\n        \"notificationsSentByEmail\": 1,\n        \"emailUsed\": \"success@simulator.amazonses.com\",\n        \"textsSent\": 0,\n        \"remindersSent\": 0\n    },\n    \"attachments\": [\n        {\n            \"attachmentName\": \"Authorization\",\n            \"fileName\": \"authorization.pdf\",\n            \"craViewOnly\": true,\n            \"createdDate\": 1574705076000,\n            \"createdBy\": \"Foo User\",\n            \"authorizationForm\": false\n        }\n    ]\n}"}],"_postman_id":"27746fb2-30a9-4d66-abd9-7ea0456c8eda"},{"name":"Applicant Orders","id":"b288429a-2809-4d31-831f-6bd8f0eb4109","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/applicants/{{applicant-guid}}/orders","description":"<p><strong>Order API</strong></p>\n<p>Get all the orders for an applicant. </p>\n","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}","applicants","{{applicant-guid}}","orders"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"8015d66d-a20a-4071-9dcf-5c9a99286a18","name":"Applicant Orders","originalRequest":{"method":"GET","header":[],"url":"https://{{host}}/v1/clients/{{client-guid}}/applicants/{{applicant-guid}}/orders"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"orderGuid\": \"1b80f713-5421-49cb-a39d-33b4af36942d\",\n        \"fileNumber\": 1593,\n        \"orderStatus\": \"New\",\n        \"orderType\": \"Volunteer\",\n        \"orderedDate\": 1572627379000,\n        \"externalIdentifier\": \"REF-hello-world\",\n        \"applicantName\": \"FOO, SARAH\",\n        \"clientName\": \"Api Client\",\n        \"clientCode\": \"API-CLNT\",\n        \"productName\": \"County Criminal Records Product\",\n        \"requestedBy\": \"October Connector October Integrator\",\n        \"searchFlagged\": false,\n        \"createdDate\": 1572627379000,\n        \"createdBy\": \"October Connector October Integrator\",\n        \"modifiedDate\": 1572627385000,\n        \"modifiedBy\": \"October Connector October Integrator\"\n    },\n    {\n        \"orderGuid\": \"34c22bbb-c4d9-4209-b038-9713322e1388\",\n        \"fileNumber\": 1639,\n        \"orderStatus\": \"New\",\n        \"orderType\": \"Employment\",\n        \"orderedDate\": 1573758415000,\n        \"applicantName\": \"FOO, SARAH\",\n        \"clientName\": \"Api Client\",\n        \"clientCode\": \"API-CLNT\",\n        \"productName\": \"Investigative Custom\",\n        \"requestedBy\": \"October Connector October Integrator\",\n        \"searchFlagged\": false,\n        \"createdDate\": 1573758415000,\n        \"createdBy\": \"October Connector October Integrator\",\n        \"modifiedDate\": 1573758415000,\n        \"modifiedBy\": \"October Connector October Integrator\"\n    }\n]\n"}],"_postman_id":"b288429a-2809-4d31-831f-6bd8f0eb4109"},{"name":"Submit Order","id":"d0e60515-bc60-459c-83ed-d87164fdf48f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"applicantGuid\": \"{{applicant-guid}}\",\n\t\"clientProductGuid\": \"{{client-product-guid}}\",\n\t\"useQuickApp\": true,\n\t\"generalReportReference\": \"Mid-Group\",\n    \"externalIdentifier\": \"10001a\",\n\t\"queueConsumerDisclosure\": \"true\",\n\t\"quickappNotifyApplicants\": \"false\",\n\t\"certifyPermissiblePurpose\": true\n}"},"url":"https://{{host}}/v1/clients/{{client-guid}}/orders","description":"<p><strong>Order API</strong></p>\n<p>Submit an order for an applicant.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>applicantGuid</strong> <em>required, uuid</em></td>\n<td>The identifier for the applicant.</td>\n</tr>\n<tr>\n<td><strong>clientProductGuid</strong> <em>required, uuid</em></td>\n<td>The identifier for the client product.</td>\n</tr>\n<tr>\n<td><strong>useQuickApp</strong> <em>boolean</em></td>\n<td>Set to true if the order should use QuickApp. This will default to false.</td>\n</tr>\n<tr>\n<td><strong>certifyPermissiblePurpose</strong> <em>boolean</em></td>\n<td>Set to true if you can certify that you have a permissible purpose to submit this order. Some clients require this. Use the <strong>Order Certification Text</strong> endpoint to view the certification template text.</td>\n</tr>\n<tr>\n<td><strong>generalReportReference</strong> <em>string</em></td>\n<td>The <code>generalReportReference</code> can be used to assign an attribute or reference to the order. This field may be required depending on the way the client product has been setup.</td>\n</tr>\n<tr>\n<td><strong>externalIdentifier</strong> <em>string</em></td>\n<td>This is an identifier that you can define that you want to associate with the order.</td>\n</tr>\n<tr>\n<td><strong>requestingUserGuid</strong> <em>uuid</em></td>\n<td>The requestor for an order defaults to the logged in user. To override this, you can provide the identifier for the user you want to become the requesting user.</td>\n</tr>\n<tr>\n<td><strong>queueConsumerDisclosure</strong> <em>boolean</em></td>\n<td>Set to true to queue the consumer disclosure. This defaults to false.</td>\n</tr>\n<tr>\n<td><strong>quickappNotifyApplicants</strong> <em>boolean</em></td>\n<td>Set to false to prevent applicants being notified when the QuickApp order has been submitted. Notifications can be sent separately using the 'Notify Applicant' API endpoint. This defaults to true.</td>\n</tr>\n<tr>\n<td><strong>substituteEndUser</strong> <em>string</em></td>\n<td>Specify a substitute end user.</td>\n</tr>\n<tr>\n<td><strong>billable</strong> <em>string</em></td>\n<td>Provide a billable value for an order.</td>\n</tr>\n<tr>\n<td><strong>costCode</strong> <em>string</em></td>\n<td>Provide a cost code for an order.</td>\n</tr>\n<tr>\n<td><strong>orderNotes</strong> <em>string</em></td>\n<td>Notes to add to the order.</td>\n</tr>\n<tr>\n<td><strong>customFields</strong> <code>customFields</code> <em>object</em></td>\n<td>If you are using any of the General Report custom fields, you can provide them here.</td>\n</tr>\n<tr>\n<td><strong>attachments</strong> <em>collection,</em> <code>attachments</code> <em>object</em></td>\n<td>You can attach authorization forms or other attachments when submitting an order. If your client requires an authorization form, this field will become required. These attachments need to be base64 encoded.</td>\n</tr>\n<tr>\n<td><strong>pspCrashInspectionData</strong> <em>collection,</em> <code>pspCrashInspectionData</code> <em>object</em></td>\n<td>This section is required if you will be submitting a PSP Crash and Inspection History search. Specify each driver license to be used in the search.</td>\n</tr>\n<tr>\n<td><strong>occupationalHealthData</strong> <code>occupationalHealthData</code> <em>object</em></td>\n<td>This section is required if you will be submitting an Occupational Health search. Which fields are required will be based on the configuration of your product.</td>\n</tr>\n<tr>\n<td><strong>socialMediaData</strong> <code>socialMediaData</code> <em>object</em></td>\n<td>This section is required when submitting a Social Media Search.</td>\n</tr>\n<tr>\n<td><strong>optionalSearches</strong> <em>collection, string</em></td>\n<td>A set of searches marked as \"optional\" on the product that you'd also like to order</td>\n</tr>\n<tr>\n<td><strong>detailedOptionalSearches</strong> <em>collection</em>, <code>detailedOptionalSearches</code> <em>object</em></td>\n<td>Add when you need to specify which optional custom search to order or if you want to specify the vendor to use for an optional search with multiple vendors.</td>\n</tr>\n<tr>\n<td><strong>specifiedVendors</strong> <code>specifiedVendors</code> <em>object</em></td>\n<td>Person, SSN, CDLIS and Credit Report searches may have multiple vendors. For those searches, you can choose to tell us which vendor(s) to use. The system will use defaults if nothing is specified</td>\n</tr>\n</tbody>\n</table>\n</div><p>Valid <code>optionalSearches</code> values are:</p>\n<p>See <strong>Search Types</strong></p>\n<p><code>detailedOptionalSearches</code> object</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>type</strong> <em>required,</em> <em>string</em></td>\n<td>The search type of the optional search you are ordering.</td>\n</tr>\n<tr>\n<td><strong>customSearchGuid</strong> <em>uuid</em></td>\n<td>The identifier of the custom search to order</td>\n</tr>\n<tr>\n<td><strong>personSearchVendors</strong> <em>optional, collection</em></td>\n<td>Person Search vendor(s) to use. See <code>specifiedVendors</code>.</td>\n</tr>\n<tr>\n<td><strong>commercialDriverLicenseVendors</strong> <em>optional, collection</em></td>\n<td>Commercial Driver License Search vendor(s) to use. See <code>specifiedVendors</code>.</td>\n</tr>\n<tr>\n<td><strong>creditReportVendors</strong> <em>optional, collection</em></td>\n<td>Credit Report vendor(s) to use. See <code>specifiedVendors</code>.</td>\n</tr>\n<tr>\n<td><strong>socialSecurityVendors</strong> <em>optional, collection</em></td>\n<td>SSN Search vendor(s) to use. See <code>specifiedVendors</code>.</td>\n</tr>\n</tbody>\n</table>\n</div><p><code>customFields</code> object</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>field1</strong> <em>string</em></td>\n<td>Enter the value for the General Report custom field 1.</td>\n</tr>\n<tr>\n<td><strong>field2</strong> <em>string</em></td>\n<td>Enter the value for the General Report custom field 2.</td>\n</tr>\n<tr>\n<td><strong>field3</strong> <em>string</em></td>\n<td>Enter the value for the General Report custom field 3.</td>\n</tr>\n<tr>\n<td><strong>field4</strong> <em>string</em></td>\n<td>Enter the value for the General Report custom field 4.</td>\n</tr>\n<tr>\n<td><strong>field5</strong> <em>string</em></td>\n<td>Enter the value for the General Report custom field 5.</td>\n</tr>\n<tr>\n<td><strong>field6</strong> <em>string</em></td>\n<td>Enter the value for the General Report custom field 6.</td>\n</tr>\n<tr>\n<td><strong>field8</strong> <em>string</em></td>\n<td>Enter the value for the General Report custom field 8.</td>\n</tr>\n<tr>\n<td><strong>field9</strong> <em>string</em></td>\n<td>Enter the value for the General Report custom field 9.</td>\n</tr>\n<tr>\n<td><strong>field10</strong> <em>string</em></td>\n<td>Enter the value for the General Report custom field 10.</td>\n</tr>\n</tbody>\n</table>\n</div><p><code>attachments</code> object</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>name</strong> <em>required, string</em></td>\n<td>The name for the attachment.</td>\n</tr>\n<tr>\n<td><strong>originalFileName</strong> <em>required, string</em></td>\n<td>The actual file name, with extension.</td>\n</tr>\n<tr>\n<td><strong>encodedContent</strong> <em>required, string</em></td>\n<td>The base64 encoded content of the file.</td>\n</tr>\n<tr>\n<td><strong>authorizationForm</strong> <em>boolean</em></td>\n<td>Set to true if the attachment is an authorization form. This defaults to false.</td>\n</tr>\n<tr>\n<td><strong>craOnly</strong> <em>boolean</em></td>\n<td>Set to true if you want only a CRA to have access to this attachment. This defaults to false.</td>\n</tr>\n</tbody>\n</table>\n</div><p><code>pspCrashInspectionData</code> object</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>driverConsentReceived</strong> <em>required, boolean</em></td>\n<td>Set to true if you have received consent from the driver.</td>\n</tr>\n<tr>\n<td><strong>licenseNumber</strong> <em>required, string</em></td>\n<td>The driver license number.</td>\n</tr>\n<tr>\n<td><strong>stateOfIssue</strong> <em>required, string</em></td>\n<td>The state where the driver license was issued.</td>\n</tr>\n<tr>\n<td><strong>lastNameOnLicense</strong> <em>required, string</em></td>\n<td>The last name or names as shown on the driver license.</td>\n</tr>\n<tr>\n<td><strong>firestNameOnLicense</strong> <em>required, string</em></td>\n<td>The first name as shown on the driver license.</td>\n</tr>\n</tbody>\n</table>\n</div><p><code>occupationalHealthData</code> object</p>\n<p>For the purposes of documentation, these fields will all be marked as optional. The required/optional settings are actually determined by which providers you are using, how your client products are configured, and whether default values are defined.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>substanceAbuseReasonForTesting</strong> <em>optional, string</em></td>\n<td>The reason for testing for drug panels.</td>\n</tr>\n<tr>\n<td><strong>healthServicesReasonForTesting</strong> <em>optional, string</em></td>\n<td>The reason for testing for health services.</td>\n</tr>\n<tr>\n<td><strong>collectionInstructions</strong> <em>optional, string</em></td>\n<td>Any collection instructions.</td>\n</tr>\n<tr>\n<td><strong>panels</strong> <code>panels</code> <em>object</em></td>\n<td>Information about which drug panels or health services to order.</td>\n</tr>\n</tbody>\n</table>\n</div><p>Valid <code>substanceAbuseReasonForTesting</code> values are:</p>\n<ul>\n<li><p>PRE_EMPLOYMENT</p>\n</li>\n<li><p>RANDOM</p>\n</li>\n<li><p>PERIODIC</p>\n</li>\n<li><p>POST_ACCIDENT</p>\n</li>\n<li><p>FOR_CAUSE</p>\n</li>\n<li><p>SUSPICION</p>\n</li>\n<li><p>RETURN_TO_DUTY</p>\n</li>\n<li><p>FOLLOW_UP</p>\n</li>\n<li><p>RECONFIRMATION</p>\n</li>\n<li><p>RETEST</p>\n</li>\n<li><p>SAMPLING</p>\n</li>\n<li><p>STUDENT</p>\n</li>\n<li><p>OTHER</p>\n</li>\n</ul>\n<p>Valid <code>healthServicesReasonForTesting</code> values are:</p>\n<ul>\n<li><p>NEW_CERTIFICATION</p>\n</li>\n<li><p>RECERTIFICATION</p>\n</li>\n<li><p>FOLLOW_UP</p>\n</li>\n<li><p>PRE_EMPLOYMENT</p>\n</li>\n<li><p>RETURN_TO_DUTY</p>\n</li>\n<li><p>OTHER</p>\n</li>\n</ul>\n<p><code>panels</code> object</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>panelGuid</strong> <em>string, uuid</em></td>\n<td>The identifier for the drug or health service panel to order.</td>\n</tr>\n<tr>\n<td><strong>specimenId</strong> <em>string</em></td>\n<td>The specimen id.</td>\n</tr>\n<tr>\n<td><strong>siteCode</strong> <em>string</em></td>\n<td>The site code for the panel.</td>\n</tr>\n<tr>\n<td><strong>observed</strong> <em>boolean</em></td>\n<td>Set to true if the panel needs to be observed.</td>\n</tr>\n<tr>\n<td><strong>splitSpecimen</strong> <em>boolean</em></td>\n<td>Set to true to request a split sample.</td>\n</tr>\n<tr>\n<td><strong>expirationDate</strong> <em>long</em></td>\n<td>The epoch date the collection will expire.</td>\n</tr>\n<tr>\n<td><strong>timeZone</strong> <em>string</em></td>\n<td>A string identifier for one of the valid timezones.</td>\n</tr>\n<tr>\n<td><strong>testScheduler</strong> <em>string</em></td>\n<td>APPLICANT or PROCESSOR scheduler type.</td>\n</tr>\n</tbody>\n</table>\n</div><p>Valid <code>timeZone</code> values are:</p>\n<ul>\n<li><p>HAWAII <em>(Pacific/Honolulu)</em></p>\n</li>\n<li><p>ALASKA <em>(America/Juneau)</em></p>\n</li>\n<li><p>ARIZONA <em>(America/Phoenix)</em></p>\n</li>\n<li><p>PACIFIC <em>(America/Los_Angeles)</em></p>\n</li>\n<li><p>MOUNTAIN <em>(America/Denver)</em></p>\n</li>\n<li><p>CENTRAL <em>(America/Chicago)</em></p>\n</li>\n<li><p>EASTERN <em>(America/New_York)</em></p>\n</li>\n</ul>\n<p><code>socialMediaData</code> object</p>\n<p>For Social Media, you can submit education or employment information as part of the social media information when submitting the order, or you can specify an existing applicant education or employment record to use. See the examples for these different scenarios.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>employmentGuid</strong> <em>uuid</em></td>\n<td>Identifier for an existing applicant employment record.</td>\n</tr>\n<tr>\n<td><strong>educationGuid</strong> <em>uuid</em></td>\n<td>Identifier for an existing applicant education record.</td>\n</tr>\n<tr>\n<td><strong>educationName</strong> <em>string</em></td>\n<td>Name of the education institution.</td>\n</tr>\n<tr>\n<td><strong>educationCity</strong> <em>string</em></td>\n<td>City where the education institution resides.</td>\n</tr>\n<tr>\n<td><strong>educationState</strong> <em>string</em></td>\n<td>State where the education institution resides.</td>\n</tr>\n<tr>\n<td><strong>employerName</strong> <em>string</em></td>\n<td>Name of employer.</td>\n</tr>\n<tr>\n<td><strong>employerAddressType</strong> <em>string</em></td>\n<td>DOMESTIC or INTL Will default to DOMESTIC.</td>\n</tr>\n<tr>\n<td><strong>employerStreet</strong> <em>string</em></td>\n<td>Street address of employer.</td>\n</tr>\n<tr>\n<td><strong>employerCity</strong> <em>string</em></td>\n<td>City of employer address.</td>\n</tr>\n<tr>\n<td><strong>employerStateOrProvince</strong> <em>string</em></td>\n<td>State or province of employer address.</td>\n</tr>\n<tr>\n<td><strong>employerPostalCode</strong> <em>string</em></td>\n<td>Zip code of employer address.</td>\n</tr>\n<tr>\n<td><strong>employerCountry</strong> <em>string</em></td>\n<td>ISO 3166 country code. See <strong>General -&gt; ISO Countries</strong> for a list of country codes.</td>\n</tr>\n<tr>\n<td><strong>platforms</strong> <code>socialMediaPlatform</code>, collection_</td>\n<td>One or more social media platforms.</td>\n</tr>\n<tr>\n<td><strong>noSocialPlatforms</strong> <em>boolean</em></td>\n<td>Set to true if there are no social media platforms to provide.</td>\n</tr>\n</tbody>\n</table>\n</div><p><code>socialMediaPlatform</code> object</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>platformName</strong> <em>string</em></td>\n<td>Name of the social media platform.</td>\n</tr>\n<tr>\n<td><strong>handle</strong> <em>string</em></td>\n<td>Social media handle.</td>\n</tr>\n</tbody>\n</table>\n</div><p><code>specifiedVendors</code> object</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>personSearchVendors</strong> <em>optional, collection</em></td>\n<td>Person Search vendor(s) to use. Valid values are: ACCURINT, TRADE_HOUSE_DATA, TRADE_HOUSE_DATA_SOURCE_A, BGC, INNOVATIVE_DATA_SOLUTIONS, MERLIN, NBD</td>\n</tr>\n<tr>\n<td><strong>commercialDriverLicenseVendors</strong> <em>optional, collection</em></td>\n<td>Commercial Driver License Search vendor(s) to use. Valid values are: ADR, COMPASS</td>\n</tr>\n<tr>\n<td><strong>creditReportVendors</strong> <em>optional, collection</em></td>\n<td>Credit Report vendor(s) to use. Valid values are: EXPERIAN_CREDIT, EXPERIAN_SCORE, EXPERIAN_FRAUD, TRANSUNION_CREDIT, TRANSUNION_SCORE, TRANSUNION_FRAUD, ACXIOM_CREDIT, EQUIFAX_CREDIT, EQUIFAX_SCORE</td>\n</tr>\n<tr>\n<td><strong>socialSecurityVendors</strong> <em>optional, collection</em></td>\n<td>SSN Search vendor(s) to use. Valid values are: EXPERIAN_SOCIAL_SEARCH, EXPERIAN_FRAUD, EXPERIAN_DEMOGRAPHIC, TRANSUNION_SSN_SEARCH, TRANSUNION_SSN_SEARCH_HIGH_RISK_FRAUD, TRANSUNION_SSN_REPORT, TRANSUNION_ID_REPORT, TRANSUNION_ID_REPORT_HIGH_RISK_FRAUD, EQUIFAX_DTEC</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}","orders"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"4b9e757c-9264-4fe1-a858-5f2877344257","name":"Submit Order","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","type":"text","value":"Bearer {{jwt-token}}"}],"body":{"mode":"raw","raw":"{\n\t\"applicantGuid\": \"{{applicant-guid}}\",\n\t\"clientProductGuid\": \"{{client-product-guid}}\",\n\t\"useQuickApp\": true,\n\t\"generalReportReference\": \"Mid-Group\",\n    \"externalIdentifier\": \"10001a\",\n\t\"queueConsumerDisclosure\": \"true\",\n\t\"quickappNotifyApplicants\": \"false\",\n\t\"certifyPermissiblePurpose\": true,\n    \"orderNotes\": \"Some interesting notes for the order.\"\n}","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients/{{client-guid}}/orders"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"orderGuid\": \"3d3429e3-9b37-4098-b9f0-07583a673642\",\n    \"fileNumber\": 1776,\n    \"orderStatus\": \"New\",\n    \"orderType\": \"Volunteer\",\n    \"orderedDate\": 1576687066000,\n    \"generalReportReference\": \"Mid-Group\",\n    \"externalIdentifier\": \"10001a\",\n    \"applicantName\": \"FOO, CARMEN\",\n    \"clientName\": \"Api Client\",\n    \"clientCode\": \"API-CLNT\",\n    \"productName\": \"National Criminal Database Packaged\",\n    \"requestedBy\": \"October Connector October Integrator\",\n    \"searchFlagged\": false,\n    \"createdDate\": 1576687066000,\n    \"createdBy\": \"October Connector October Integrator\",\n    \"modifiedDate\": 1576687066552,\n    \"modifiedBy\": \"October Connector October Integrator\"\n}"},{"id":"d49f9c90-1a7b-43a6-bb8a-bde8fe85318a","name":"Submit Order with Authorization Form","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","type":"text","value":"Bearer {{jwt-token}}"}],"body":{"mode":"raw","raw":"{\n    \"applicantGuid\": \"{{applicant-guid}}\",\n    \"clientProductGuid\": \"{{client-product-guid}}\",\n    \"generalReportReference\": \"Mid-Group\",\n    \"attachments\": [\n        {\n            \"name\": \"Applicant Auth Form\",\n            \"originalFileName\": \"encoded_hello-api.txt\",\n            \"encodedContent\": \"SGVsbG8sIFRhekFQSQ==\",\n            \"authorizationForm\": true\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients/{{client-guid}}/orders"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"orderGuid\": \"3d3429e3-9b37-4098-b9f0-07583a673642\",\n    \"fileNumber\": 1776,\n    \"orderStatus\": \"New\",\n    \"orderType\": \"Volunteer\",\n    \"orderedDate\": 1576687066000,\n    \"generalReportReference\": \"Mid-Group\",\n    \"applicantName\": \"FOO, CARMEN\",\n    \"clientName\": \"Api Client\",\n    \"clientCode\": \"API-CLNT\",\n    \"productName\": \"National Criminal Database Packaged\",\n    \"requestedBy\": \"October Connector October Integrator\",\n    \"searchFlagged\": false,\n    \"createdDate\": 1576687066000,\n    \"createdBy\": \"October Connector October Integrator\",\n    \"modifiedDate\": 1576687066552,\n    \"modifiedBy\": \"October Connector October Integrator\"\n}"},{"id":"437656b1-b973-488c-ab90-bd61f19b7b7a","name":"Missing permissible purpose certification","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","type":"text","value":"Bearer {{jwt-token}}"}],"body":{"mode":"raw","raw":"{\n\t\"applicantGuid\": \"{{applicant-guid}}\",\n\t\"clientProductGuid\": \"{{client-product-guid}}\",\n\t\"useQuickApp\": true,\n\t\"generalReportReference\": \"Mid-Group\",\n    \"externalIdentifier\": \"10001a\",\n\t\"queueConsumerDisclosure\": \"true\",\n\t\"quickappNotifyApplicants\": \"false\"\n}","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients/{{client-guid}}/orders"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": \"VALIDATION_EXCEPTION\",\n    \"message\": \"This client requires that permissible purpose be certified in order to submit a QuickApp order.  There is an available API call to view the text for order certification.\"\n}"},{"id":"9bb4d1f2-fae3-4c2e-a743-d40ede531535","name":"Order With Custom Fields - Invalid Value","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","type":"text","value":"Bearer {{jwt-token}}"}],"body":{"mode":"raw","raw":"{\n\t\"applicantGuid\": \"{{applicant-guid}}\",\n\t\"clientProductGuid\": \"{{client-product-guid}}\",\n\t\"useQuickApp\": false,\n\t\"certifyPermissiblePurpose\": true,\n\t\"customFields\": {\n\t\t\"field1\": \"one\",\n\t\t\"field2\": \"two\",\n\t\t\"field3\": \"three\",\n\t\t\"field4\": \"four\",\n\t\t\"field5\": \"five\",\n\t\t\"field6\": \"six\",\n\t\t\"field7\": \"seven\",\n\t\t\"field8\": \"eight\",\n\t\t\"field9\": \"nine\",\n\t\t\"field10\": \"ten\"\n\t}\n}","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients/{{client-guid}}/orders"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"code\": \"VALIDATION_EXCEPTION\",\n    \"message\": \"Custom field 6 (Sport) only accepts predefined values (Tennis, Extreme Chess, Rugby).  six is not a valid value.\"\n}"},{"id":"249d9784-cb11-422f-9875-9df1f93526c2","name":"PSP Crash and Inspection History","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","type":"text","value":"Bearer {{jwt-token}}"}],"body":{"mode":"raw","raw":"{\n\t\"applicantGuid\": \"{{applicant-guid}}\",\n\t\"clientProductGuid\": \"{{client-product-guid}}\",\n\t\"useQuickApp\": true,\n\t\"quickappNotifyApplicants\": \"false\",\n\t\"certifyPermissiblePurpose\": true,\n\t\"pspCrashInspectionData\": [\n\t\t{\n\t\t\"driverConsentReceived\": true,\n\t\t\"licenseNumber\": \"1234567\",\n\t\t\"stateOfIssue\": \"AL\",\n\t\t\"lastNameOnLicense\": \"LEGHORN\",\n\t\t\"firstNameOnLicense\": \"FOGHORN\"\n\t\t}\n\t]\n}","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients/{{client-guid}}/orders"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"orderGuid\": \"3d3429e3-9b37-4098-b9f0-07583a673642\",\n    \"fileNumber\": 1587,\n    \"orderStatus\": \"New\",\n    \"orderType\": \"Employment\",\n    \"orderedDate\": 1576687066000,\n    \"applicantName\": \"FOO, CARMEN\",\n    \"clientName\": \"Api Client\",\n    \"clientCode\": \"API-CLNT\",\n    \"productName\": \"PSP Crash and Inspection\",\n    \"requestedBy\": \"October Connector October Integrator\",\n    \"searchFlagged\": false,\n    \"createdDate\": 1576687066000,\n    \"createdBy\": \"October Connector October Integrator\",\n    \"modifiedDate\": 1576687066552,\n    \"modifiedBy\": \"October Connector October Integrator\"\n}"},{"id":"7dce0573-15e7-430e-966b-081fd431e709","name":"Submit Order with Optional searches","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"applicantGuid\": \"{{applicant-guid}}\",\n\t\"clientProductGuid\": \"{{client-product-guid}}\",\n\t\"generalReportReference\": \"Mid-Group\",\n    \"externalIdentifier\": \"10001a\",\n    \"optionalSearches\": [\n        \"NATIONAL_CRIMINAL_DATABASE\",\n        \"EMPLOYMENT_VERIFICATION\"\n    ],\n    \"detailedOptionalSearches\": [\n    {\n        \"type\": \"CREDIT_CUSTOM\",\n      \"customSearchGuid\": \"67b721c0-eb3f-11f0-b80d-c24927e61099\"\n    },\n    {\n      \"type\": \"INVESTIGATIVE_CUSTOM\",\n      \"customSearchGuid\": \"a4d47b9d-cbdd-4917-baa8-ec4a1c1baf0c\"\n    }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients/{{client-guid}}/orders"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"orderGuid\": \"3d3429e3-9b37-4098-b9f0-07583a673642\",\n    \"fileNumber\": 1776,\n    \"orderStatus\": \"New\",\n    \"orderType\": \"Volunteer\",\n    \"orderedDate\": 1576687066000,\n    \"generalReportReference\": \"Mid-Group\",\n    \"externalIdentifier\": \"10001a\",\n    \"applicantName\": \"FOO, CARMEN\",\n    \"clientName\": \"Api Client\",\n    \"clientCode\": \"API-CLNT\",\n    \"productName\": \"National Criminal Database Packaged\",\n    \"requestedBy\": \"October Connector October Integrator\",\n    \"searchFlagged\": false,\n    \"createdDate\": 1576687066000,\n    \"createdBy\": \"October Connector October Integrator\",\n    \"modifiedDate\": 1576687066552,\n    \"modifiedBy\": \"October Connector October Integrator\"\n}"},{"id":"5fd14022-60ef-45bb-9fff-9c68a90555e8","name":"Occupational Health","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","type":"text","value":"Bearer {{jwt-token}}"}],"body":{"mode":"raw","raw":"{\n\t\"applicantGuid\": \"{{applicant-guid}}\",\n\t\"clientProductGuid\": \"{{client-product-guid}}\",\n\t\"useQuickApp\": true,\n\t\"generalReportReference\": \"Mid-Group\",\n    \"externalIdentifier\": \"10001a\",\n\t\"queueConsumerDisclosure\": \"true\",\n\t\"quickappNotifyApplicants\": \"true\",\n\t\"certifyPermissiblePurpose\": true,\n    \"occupationalHealthData\": {\n        \"substanceAbuseReasonForTesting\": \"FOLLOW_UP\",\n        \"healthServicesReasonForTesting\": \"PRE_EMPLOYMENT\",\n        \"panels\": [\n            {\n                \"panelGuid\": \"{{panel1-guid}}\",\n                \"testScheduler\": \"APPLICANT\",\n                \"expirationDate\": 1622923386000,\n                \"timeZone\": \"ARIZONA\"\n            },\n            {\n                \"panelGuid\": \"{{panel2-guid}}\",\n                \"testScheduler\": \"APPLICANT\",\n                \"expirationDate\": 1622923386000,\n                \"timeZone\": \"ARIZONA\",\n                \"siteCode\": \"065825\"\n            }\n        ]\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients/{{client-guid}}/orders"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"orderGuid\": \"3d3429e3-9b37-4098-b9f0-07583a673642\",\n    \"fileNumber\": 1587,\n    \"orderStatus\": \"New\",\n    \"orderType\": \"Employment\",\n    \"orderedDate\": 1576687066000,\n    \"applicantName\": \"FOO, CARMEN\",\n    \"clientName\": \"Api Client\",\n    \"clientCode\": \"API-CLNT\",\n    \"productName\": \"Occupational Health Foo\",\n    \"requestedBy\": \"October Connector October Integrator\",\n    \"searchFlagged\": false,\n    \"createdDate\": 1576687066000,\n    \"createdBy\": \"October Connector October Integrator\",\n    \"modifiedDate\": 1576687066552,\n    \"modifiedBy\": \"October Connector October Integrator\"\n}"},{"id":"5b4c6cd2-7c2b-45bf-b5df-7e4721040349","name":"Specifying Vendors to Use","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","type":"text","value":"Bearer {{jwt-token}}"}],"body":{"mode":"raw","raw":"{\n\t\"applicantGuid\": \"{{applicant-guid}}\",\n\t\"clientProductGuid\": \"1bdf6c51-4b3b-4a95-a413-0cbcd6123ef2\",\n\t\"useQuickApp\": true,\n\t\"queueConsumerDisclosure\": \"false\",\n\t\"quickappNotifyApplicants\": \"true\",\n    \"optionalSearches\": [\n        \"SOCIAL_SECURITY_SEARCH\"\n    ],\n    \"specifiedVendors\": {\n            \"socialSecurityVendors\": [\n                \"EXPERIAN_SOCIAL_SEARCH\",\n                \"EXPERIAN_FRAUD\"\n            ]\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients/{{client-guid}}/orders"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"orderGuid\": \"3d3429e3-9b37-4098-b9f0-07583a673642\",\n    \"fileNumber\": 1587,\n    \"orderStatus\": \"New\",\n    \"orderType\": \"Employment\",\n    \"orderedDate\": 1576687066000,\n    \"applicantName\": \"FOO, CARMEN\",\n    \"clientName\": \"Api Client\",\n    \"clientCode\": \"API-CLNT\",\n    \"productName\": \"Product Foo\",\n    \"requestedBy\": \"October Connector October Integrator\",\n    \"searchFlagged\": false,\n    \"createdDate\": 1576687066000,\n    \"createdBy\": \"October Connector October Integrator\",\n    \"modifiedDate\": 1576687066552,\n    \"modifiedBy\": \"October Connector October Integrator\"\n}"},{"id":"c01f3ae1-316c-4b6f-9d3d-721fcc2c97fc","name":"Social Media using Guids","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","type":"text","value":"Bearer {{jwt-token}}"}],"body":{"mode":"raw","raw":"{\n\t\"applicantGuid\": \"{{applicant-guid}}\",\n\t\"clientProductGuid\": \"{{client-product-guid}}\",\n\t\"useQuickApp\": false,\n    \"socialMediaData\": {\n        \"employmentGuid\": \"{{applicant-employment-guid}}\",\n        \"educationGuid\": \"{{applicant-education-guid}}\",\n        \"platforms\": [\n            {\n                \"platformName\": \"facebook\",\n                \"handle\": \"nimrod\"\n            },\n            {\n                \"platformName\": \"twitter\",\n                \"handle\": \"yikes\"\n            }\n        ]\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients/{{client-guid}}/orders"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"orderGuid\": \"3d3429e3-9b37-4098-b9f0-07583a673642\",\n    \"fileNumber\": 1776,\n    \"orderStatus\": \"New\",\n    \"orderedDate\": 1576687066000,\n    \"applicantName\": \"FOO, CARMEN\",\n    \"clientName\": \"Api Client\",\n    \"clientCode\": \"API-CLNT\",\n    \"productName\": \"National Criminal Database Packaged\",\n    \"requestedBy\": \"October Connector October Integrator\",\n    \"searchFlagged\": false,\n    \"createdDate\": 1576687066000,\n    \"createdBy\": \"October Connector October Integrator\",\n    \"modifiedDate\": 1576687066552,\n    \"modifiedBy\": \"October Connector October Integrator\"\n}"},{"id":"314a58d4-0d1b-4454-8e05-3f44fd9a6271","name":"Social Media provide Education/Employment","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","type":"text","value":"Bearer {{jwt-token}}"}],"body":{"mode":"raw","raw":"{\n\t\"applicantGuid\": \"{{applicant-guid}}\",\n\t\"clientProductGuid\": \"{{client-product-guid}}\",\n\t\"useQuickApp\": false,\n    \"socialMediaData\": {\n        \"educationName\": \"Yale\",\n        \"educationCity\": \"Savannah\",\n        \"educationState\": \"GA\",\n        \"employerName\": \"Joe\",\n        \"employerAddressType\": \"DOMESTIC\",\n        \"employerStreet\": \"20 Westbrook\",\n        \"employerCity\": \"Boise\",\n        \"employerStateOrProvince\": \"ID\",\n        \"employerPostalCode\": \"23568\",\n        \"employerCountry\": \"USA\",\n        \"platforms\": [\n            {\n                \"platformName\": \"facebook\",\n                \"handle\": \"nimrod\"\n            }\n        ],\n        \"noSocialPlatforms\": false\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients/{{client-guid}}/orders"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"orderGuid\": \"3d3429e3-9b37-4098-b9f0-07583a673642\",\n    \"fileNumber\": 1776,\n    \"orderStatus\": \"New\",\n    \"orderedDate\": 1576687066000,\n    \"applicantName\": \"FOO, CARMEN\",\n    \"clientName\": \"Api Client\",\n    \"clientCode\": \"API-CLNT\",\n    \"productName\": \"National Criminal Database Packaged\",\n    \"requestedBy\": \"October Connector October Integrator\",\n    \"searchFlagged\": false,\n    \"createdDate\": 1576687066000,\n    \"createdBy\": \"October Connector October Integrator\",\n    \"modifiedDate\": 1576687066552,\n    \"modifiedBy\": \"October Connector October Integrator\"\n}"}],"_postman_id":"d0e60515-bc60-459c-83ed-d87164fdf48f"},{"name":"Add To Order","id":"d395397b-e819-4950-a878-e6fad9b5ec56","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"body":{"mode":"raw","raw":"[\n    {\n        \"type\": \"NATIONAL_CRIMINAL_DATABASE_ALIAS\"\n    },\n    {\n        \"type\": \"COUNTY_CRIMINAL_RECORD\",\n        \"values\": [\n            {\n                \"aliasGuid\": \"2f50458b-03d9-4ae3-a3e1-4eb247f2da9f\",\n                \"jurisdiction\": {\n                    \"county\": \"SALT LAKE\",\n                    \"stateOrProvince\": \"UT\"\n                }\n            },\n            {\n                \"jurisdiction\": {\n                    \"county\": \"DAVIS\",\n                    \"stateOrProvince\": \"UT\"\n                }\n            }\n        ]\n    }\n]"},"url":"https://{{host}}/v1/clients/{{client-guid}}/orders/{{order-guid}}/searches","description":"<p><strong>Order API</strong></p>\n<p>Add searches to an existing order.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>type</strong> <em>required, string</em></td>\n<td>The search type you wish to add to the order.</td>\n</tr>\n<tr>\n<td><strong>customSearchGuid</strong> <em>string</em></td>\n<td>The identifier for a custom search to add to order.</td>\n</tr>\n<tr>\n<td><strong>values</strong> <em>array</em></td>\n<td>Any search values you wish to add. See the examples section for each search type values.</td>\n</tr>\n<tr>\n<td><strong>pspCrashInspectionData</strong> <code>_pspCrashInspectionData_</code> <em>object</em></td>\n<td>Required when adding a PSP_CRASH_INSPECTION search to an order. See the <strong>Submit Order</strong> endpoint for information on this object.</td>\n</tr>\n<tr>\n<td><strong>socialMediaData</strong> <code>_socialMediaData_</code> <em>object</em></td>\n<td>Required when adding a Social Media search. See the <strong>Submit Order</strong> endpoint for information on this object.</td>\n</tr>\n<tr>\n<td><strong>personSearchVendors</strong> <em>array</em></td>\n<td>Only required if more than one person search vendor is enabled on the CRA product, and there are no default values set by the CRA. Valid values are: ACCURINT, TRADE_HOUSE_DATA, TRADE_HOUSE_DATA_SOURCE_A, BGC, INNOVATIVE_DATA_SOLUTIONS, MERLIN, NBD</td>\n</tr>\n<tr>\n<td><strong>commercialDriverLicenseVendors</strong> <em>array</em></td>\n<td>Only required if more than one commercial drivers license vendor is enabled on the CRA product, and there are no default values set by the CRA. Valid values are: ADR, COMPASS</td>\n</tr>\n<tr>\n<td><strong>creditReportVendors</strong> <em>array</em></td>\n<td>Only required if more than one credit report vendor is enabled on the CRA product, and there are no default values set by the CRA. Valid values are: EXPERIAN_CREDIT, EXPERIAN_SCORE, EXPERIAN_FRAUD, TRANSUNION_CREDIT, TRANSUNION_SCORE, TRANSUNION_FRAUD, ACXIOM_CREDIT, EQUIFAX_CREDIT, EQUIFAX_SCORE</td>\n</tr>\n<tr>\n<td><strong>socialSecurityVendors</strong> <em>array</em></td>\n<td>Only required if more than one social security vendor is enabled on the CRA product, and there are no default values set by the CRA. Valid values are: EXPERIAN_SOCIAL_SEARCH, EXPERIAN_FRAUD, EXPERIAN_DEMOGRAPHIC, TRANSUNION_SSN_SEARCH, TRANSUNION_SSN_SEARCH_HIGH_RISK_FRAUD, TRANSUNION_SSN_REPORT, TRANSUNION_ID_REPORT, TRANSUNION_ID_REPORT_HIGH_RISK_FRAUD, EQUIFAX_DTEC</td>\n</tr>\n</tbody>\n</table>\n</div><p><code>values</code> object</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>aliasGuid</strong> <em>string</em></td>\n<td>If adding a search that supports aliases, and you want to add an alias instead of the main applicant, supply this alias guid.</td>\n</tr>\n<tr>\n<td><strong>referenceGuid</strong> <em>string</em></td>\n<td>When adding a reference search, this field is required.</td>\n</tr>\n<tr>\n<td><strong>licenseGuid</strong> <em>string</em></td>\n<td>When adding a license search, this field is required.</td>\n</tr>\n<tr>\n<td><strong>educationGuid</strong> <em>string</em></td>\n<td>When adding an education search, this field is required.</td>\n</tr>\n<tr>\n<td><strong>employmentGuid</strong> <em>string</em></td>\n<td>When adding a employment search, this field is required.</td>\n</tr>\n<tr>\n<td><strong>addressGuid</strong> <em>string</em></td>\n<td>When adding a residence search, this field is required.</td>\n</tr>\n<tr>\n<td><strong>jurisdiction</strong> <em>object</em></td>\n<td>The jurisdiction object. Required if adding a non-nationwide jurisdiction search.</td>\n</tr>\n</tbody>\n</table>\n</div><p><code>jurisdiction</code> object</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>stateOrProvince</strong> <em>string</em></td>\n<td>The state or province name. Required for state-based jurisdiction searches.</td>\n</tr>\n<tr>\n<td><strong>county</strong> <em>string</em></td>\n<td>The county name. Required for county-based jurisdiction searches.</td>\n</tr>\n<tr>\n<td><strong>federalDistrict</strong> <em>string</em></td>\n<td>The federal district name. Required for federal-district-based jurisdiction searches.</td>\n</tr>\n<tr>\n<td><strong>country</strong> <em>boolean</em></td>\n<td>The federal district name. Required for international-based jurisdiction searches</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}","orders","{{order-guid}}","searches"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"54d5a6fb-ec2e-4491-9c09-dc49b4a94d5d","name":"With Optional Search","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"body":{"mode":"raw","raw":"[\n    {\n        \"type\": \"INSTANT_DRIVING\",\n        \"values\": [\n            {\n                \"licenseGuid\": \"6e12664a-6c8a-463b-8a61-710891286478\"\n            }\n        ],\n        \"optionalSearches\": [\n            \"INSTANT_DRIVING\"\n        ]\n    }\n]","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients/{{client-guid}}/orders/{{order-guid}}/searches"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"orderSearchGuid\": \"50a65f13-94fb-45df-9408-59617ecfe158\",\n        \"status\": \"processing\",\n        \"type\": \"INSTANT_DRIVING\",\n        \"displayName\": \"Instant Driving Records\",\n        \"displayValue\": \"Utah\",\n        \"modifiedDate\": 1736188159140\n    }\n]"},{"id":"330a037e-0e9a-4e0b-a151-b85d51ffa2dd","name":"Additional Employment Verification","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","type":"text","value":"Bearer {{jwt-token}}"}],"body":{"mode":"raw","raw":"[\n        {\n            \"type\": \"ADDITIONAL_EMPLOYMENT_VERIFICATION\",\n            \"values\": [\n                {\n                    \"employmentGuid\": \"831cbcad-da30-4b48-bd41-3a0df076587d\"\n                }\n            ]\n        }\n    ]\n","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients/{{client-guid}}/orders/{{order-guid}}/searches"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"orderSearchGuid\": \"02998ffa-0495-479d-ae18-07ed667e85d8\",\n        \"status\": \"new\",\n        \"type\": \"ADDITIONAL_EMPLOYMENT_VERIFICATION\",\n        \"displayName\": \"Additional Employment Verification\",\n        \"displayValue\": \"ABC Company\",\n        \"modifiedDate\": 1617836018878\n    }\n]"},{"id":"e2663b55-7421-431a-871c-cc9279c70fcb","name":"Assumed Name","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","type":"text","value":"Bearer {{jwt-token}}"}],"body":{"mode":"raw","raw":"[\n        {\n            \"type\": \"ASSUMED_NAME_RECORD\",\n            \"values\": [\n                {\n                    \"jurisdiction\": {\n                        \"county\": \"DAVIS\",\n                        \"stateOrProvince\": \"UT\"\n                    }\n                }\n            ]\n        }\n    ]\n","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients/{{client-guid}}/orders/{{order-guid}}/searches"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"orderSearchGuid\": \"6a8db9f7-e0e1-47cf-8568-574835b996ed\",\n        \"status\": \"new\",\n        \"type\": \"ASSUMED_NAME_RECORD\",\n        \"displayName\": \"Assumed Name Records Search\",\n        \"displayValue\": \"UT-DAVIS (MAY, LOUISE M.)\",\n        \"modifiedDate\": 1617902328407\n    }\n]"},{"id":"9ce07851-2bc0-4e99-9c39-625e08ebc246","name":"Bankruptcy Filings - Nationwide","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","type":"text","value":"Bearer {{jwt-token}}"}],"body":{"mode":"raw","raw":"[\n    {\n        \"type\": \"BANKRUPTCY_FILINGS\"\n    }\n]","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients/{{client-guid}}/orders/{{order-guid}}/searches"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"orderSearchGuid\": \"6a8db9f7-e0e1-47cf-8568-574835b996ed\",\n        \"status\": \"new\",\n        \"type\": \"BANKRUPTCY_FILINGS\",\n        \"displayName\": \"Bankruptcy Filings Search\",\n        \"displayValue\": \"NATIONWIDE (MAY, LOUISE M.)\",\n        \"modifiedDate\": 1617902328407\n    }\n]"},{"id":"803c3b4b-de97-4570-a2e8-e0c5461b6e50","name":"Bankruptcy Filings","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","type":"text","value":"Bearer {{jwt-token}}"}],"body":{"mode":"raw","raw":"[\n    {\n        \"type\": \"BANKRUPTCY_FILINGS\",\n        \"values\": [\n            {\n                \"jurisdiction\": {\n                    \"federalDistrict\": \"UTAH\"\n                }\n            }\n        ]\n    }\n]","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients/{{client-guid}}/orders/{{order-guid}}/searches"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"orderSearchGuid\": \"6a8db9f7-e0e1-47cf-8568-574835b996ed\",\n        \"status\": \"new\",\n        \"type\": \"BANKRUPTCY_FILINGS\",\n        \"displayName\": \"Bankruptcy Filings Search\",\n        \"displayValue\": \"UTAH (MAY, LOUISE M.)\",\n        \"modifiedDate\": 1617902328407\n    }\n]"},{"id":"9ca0284a-002a-49dc-a599-25c350183469","name":"Commercial Drivers License","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","type":"text","value":"Bearer {{jwt-token}}"}],"body":{"mode":"raw","raw":"[\n    {\n        \"type\": \"COMMERCIAL_DRIVERS_LICENSE\"\n    }\n]","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients/{{client-guid}}/orders/{{order-guid}}/searches"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"orderSearchGuid\": \"f74d5dc8-a960-4c8c-866e-9e8a08055318\",\n        \"status\": \"processing\",\n        \"type\": \"COMMERCIAL_DRIVERS_LICENSE\",\n        \"displayName\": \"Commercial Drivers License Information System (CDLIS)\",\n        \"displayValue\": \"MAY, LOUISE M.\",\n        \"modifiedDate\": 1617903522914\n    }\n]"},{"id":"4784c2aa-e108-4c12-babb-3aad8f93a342","name":"Commercial Drivers License - Specific Vendor(s)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","type":"text","value":"Bearer {{jwt-token}}"}],"body":{"mode":"raw","raw":"[\n    {\n        \"type\": \"COMMERCIAL_DRIVERS_LICENSE\",\n        \"commercialDriverLicenseVendors\": [\n            \"COMPASS\"\n        ]\n    }\n]","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients/{{client-guid}}/orders/{{order-guid}}/searches"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"orderSearchGuid\": \"f74d5dc8-a960-4c8c-866e-9e8a08055318\",\n        \"status\": \"processing\",\n        \"type\": \"COMMERCIAL_DRIVERS_LICENSE\",\n        \"displayName\": \"Commercial Drivers License Information System (CDLIS)\",\n        \"displayValue\": \"MAY, LOUISE M.\",\n        \"modifiedDate\": 1617903522914\n    }\n]"},{"id":"e0aa50b8-2ce5-4eef-ad9a-ffaa22ee6519","name":"County Civil","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","type":"text","value":"Bearer {{jwt-token}}"}],"body":{"mode":"raw","raw":"[\n    {\n        \"type\": \"COUNTY_CIVIL_RECORD\",\n        \"values\": [\n            {\n                \"jurisdiction\": {\n                    \"stateOrProvince\": \"UT\",\n                    \"county\": \"DAVIS\"\n                }\n            }\n        ]\n    }\n]","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients/{{client-guid}}/orders/{{order-guid}}/searches"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"orderSearchGuid\": \"02998ffa-0495-479d-ae18-07ed667e85d8\",\n        \"status\": \"new\",\n        \"type\": \"COUNTY_CIVIL_RECORD\",\n        \"displayName\": \"County Civil Records Search\",\n        \"displayValue\": \"UT-DAVIS (MAY, LOUISE M.)\",\n        \"modifiedDate\": 1617836018878\n    }\n]"},{"id":"b3184741-1aa3-4625-b45d-76da7f8bdf75","name":"County Criminal","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","type":"text","value":"Bearer {{jwt-token}}"}],"body":{"mode":"raw","raw":"[\n    {\n        \"type\": \"COUNTY_CRIMINAL_RECORD\",\n        \"values\": [\n            {\n                \"jurisdiction\": {\n                    \"stateOrProvince\": \"UT\",\n                    \"county\": \"DAVIS\"\n                }\n            }\n        ]\n    }\n]","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients/{{client-guid}}/orders/{{order-guid}}/searches"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"orderSearchGuid\": \"02998ffa-0495-479d-ae18-07ed667e85d8\",\n        \"status\": \"new\",\n        \"type\": \"COUNTY_CRIMINAL_RECORD\",\n        \"displayName\": \"County Criminal Records Search\",\n        \"displayValue\": \"UT-DAVIS (MAY, LOUISE M.)\",\n        \"modifiedDate\": 1617836018878\n    }\n]"},{"id":"9715205d-261a-4c5b-8e06-0b96c88fcca0","name":"County Criminal - Alias","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","type":"text","value":"Bearer {{jwt-token}}"}],"body":{"mode":"raw","raw":"[\n    {\n        \"type\": \"COUNTY_CRIMINAL_RECORD\",\n        \"values\": [\n            {\n                \"aliasGuid\": \"831cbcad-da30-4b48-bd41-3a0df076587d\",\n                \"jurisdiction\": {\n                    \"stateOrProvince\": \"UT\",\n                    \"county\": \"DAVIS\"\n                }\n            }\n        ]\n    }\n]","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients/{{client-guid}}/orders/{{order-guid}}/searches"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"orderSearchGuid\": \"02998ffa-0495-479d-ae18-07ed667e85d8\",\n        \"status\": \"new\",\n        \"type\": \"COUNTY_CRIMINAL_RECORD\",\n        \"displayName\": \"County Criminal Records Search\",\n        \"displayValue\": \"UT-DAVIS (DOE, JOHN M.)\",\n        \"modifiedDate\": 1617836054525\n    }\n]"},{"id":"35ae87c9-0ede-4395-86a3-658458d555b5","name":"County Criminal - Duplicate","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","type":"text","value":"Bearer {{jwt-token}}"}],"body":{"mode":"raw","raw":"[\n    {\n        \"type\": \"COUNTY_CRIMINAL_RECORD\",\n        \"values\": [\n            {\n                \"jurisdiction\": {\n                    \"stateOrProvince\": \"UT\",\n                    \"county\": \"DAVIS\"\n                }\n            }\n        ]\n    }\n]","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients/{{client-guid}}/orders/{{order-guid}}/searches"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": \"RESOURCE_ALREADY_EXISTS\",\n    \"message\": \"COUNTY_CRIMINAL_RECORD (UT-DAVIS) has already been added to the order.\"\n}"},{"id":"1b05d4c8-8253-458b-8e49-21925316cc2b","name":"Credentials Custom","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","type":"text","value":"Bearer {{jwt-token}}"}],"body":{"mode":"raw","raw":"[\n    {\n        \"type\": \"CREDENTIALS_CUSTOM\",\n        \"customSearchGuid\": \"831cbcad-da30-4b48-bd41-3a0df076587d\"\n    }\n]","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients/{{client-guid}}/orders/{{order-guid}}/searches"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"orderSearchGuid\": \"f74d5dc8-a960-4c8c-866e-9e8a08055318\",\n        \"status\": \"processing\",\n        \"type\": \"CREDENTIALS_CUSTOM\",\n        \"displayName\": \"Custom Credential Search\",\n        \"displayValue\": \"MAY, LOUISE M.\",\n        \"modifiedDate\": 1617903522914\n    }\n]"},{"id":"1b6e96f8-eb44-42cb-994c-0ff8d01f32be","name":"Credit Custom","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","type":"text","value":"Bearer {{jwt-token}}"}],"body":{"mode":"raw","raw":"[\n    {\n        \"type\": \"CREDIT_CUSTOM\",\n        \"customSearchGuid\": \"831cbcad-da30-4b48-bd41-3a0df076587d\"\n    }\n]","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients/{{client-guid}}/orders/{{order-guid}}/searches"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"orderSearchGuid\": \"f74d5dc8-a960-4c8c-866e-9e8a08055318\",\n        \"status\": \"processing\",\n        \"type\": \"CREDIT_CUSTOM\",\n        \"displayName\": \"Custom Credit Search\",\n        \"displayValue\": \"MAY, LOUISE M.\",\n        \"modifiedDate\": 1617903522914\n    }\n]"},{"id":"a3e1601c-df93-44ae-94c9-aeb52c848e8a","name":"Credit Report - Specific Vendor(s)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","type":"text","value":"Bearer {{jwt-token}}"}],"body":{"mode":"raw","raw":"[\n    {\n        \"type\": \"CREDIT_REPORT\",\n        \"creditReportVendors\": [\n            \"EQUIFAX_CREDIT\"\n        ]\n    }\n]","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients/{{client-guid}}/orders/{{order-guid}}/searches"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"orderSearchGuid\": \"f74d5dc8-a960-4c8c-866e-9e8a08055318\",\n        \"status\": \"new\",\n        \"type\": \"CREDIT_REPORT\",\n        \"displayName\": \"Credit Report\",\n        \"displayValue\": \"TRANSUNION - 123-12-1234\",\n        \"modifiedDate\": 1617903522914\n    }\n]"},{"id":"8a711959-166e-4da0-9e44-e539225cb0df","name":"Credit Report","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","type":"text","value":"Bearer {{jwt-token}}"}],"body":{"mode":"raw","raw":"[\n    {\n        \"type\": \"CREDIT_REPORT\"\n    }\n]","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients/{{client-guid}}/orders/{{order-guid}}/searches"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"orderSearchGuid\": \"f74d5dc8-a960-4c8c-866e-9e8a08055318\",\n        \"status\": \"new\",\n        \"type\": \"CREDIT_REPORT\",\n        \"displayName\": \"Credit Report\",\n        \"displayValue\": \"TRANSUNION - 123-12-1234\",\n        \"modifiedDate\": 1617903522914\n    }\n]"},{"id":"38305967-b214-4a20-9e65-20eb03dcd708","name":"Education Verification","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","type":"text","value":"Bearer {{jwt-token}}"}],"body":{"mode":"raw","raw":"[\n    {\n        \"type\": \"EDUCATION_VERIFICATION\",\n        \"values\": [\n            {\n                \"educationGuid\": \"831cbcad-da30-4b48-bd41-3a0df076587d\"\n            }\n        ]\n    }\n]","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients/{{client-guid}}/orders/{{order-guid}}/searches"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"orderSearchGuid\": \"02998ffa-0495-479d-ae18-07ed667e85d8\",\n        \"status\": \"new\",\n        \"type\": \"EDUCATION_VERIFICATION\",\n        \"displayName\": \"Education Verification\",\n        \"displayValue\": \"ABC University\",\n        \"modifiedDate\": 1617836018878\n    }\n]"},{"id":"b8632830-7adb-4d24-b743-f84de857a73f","name":"Employment Verification","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","type":"text","value":"Bearer {{jwt-token}}"}],"body":{"mode":"raw","raw":"[\n    {\n        \"type\": \"EMPLOYMENT_VERIFICATION\",\n        \"values\": [\n            {\n                \"employmentGuid\": \"831cbcad-da30-4b48-bd41-3a0df076587d\"\n            }\n        ]\n    }\n]","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients/{{client-guid}}/orders/{{order-guid}}/searches"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"orderSearchGuid\": \"02998ffa-0495-479d-ae18-07ed667e85d8\",\n        \"status\": \"new\",\n        \"type\": \"EMPLOYMENT_VERIFICATION\",\n        \"displayName\": \"Employment Verification\",\n        \"displayValue\": \"ABC Company\",\n        \"modifiedDate\": 1617836018878\n    }\n]"},{"id":"1e7f0764-31df-4f9d-b2d4-2875b81c1435","name":"Executive Summary","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","type":"text","value":"Bearer {{jwt-token}}"}],"body":{"mode":"raw","raw":"[\n    {\n        \"type\": \"EXECUTIVE_SUMMARY\"\n    }\n]","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients/{{client-guid}}/orders/{{order-guid}}/searches"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n{\n        \"orderSearchGuid\": \"6773d1cb-255b-46bc-9023-db986ae143c2\",\n        \"status\": \"new\",\n        \"type\": \"EXECUTIVE_SUMMARY\",\n        \"displayName\": \"Executive Summary\",\n        \"displayValue\": \"MAY, LOUISE M.\",\n        \"modifiedDate\": 1617835987000\n    }\n]"},{"id":"d89dde14-0be7-484d-ac4c-6b8b9ec64f11","name":"Federal Criminal/Civil - Nationwide","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","type":"text","value":"Bearer {{jwt-token}}"}],"body":{"mode":"raw","raw":"[\n    {\n        \"type\": \"FEDERAL_CRIMINAL_RECORD\"\n    }\n]","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients/{{client-guid}}/orders/{{order-guid}}/searches"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"orderSearchGuid\": \"7d50f39e-18df-4a81-9bec-29f1f667517f\",\n        \"status\": \"new\",\n        \"type\": \"FEDERAL_CRIMINAL_RECORD\",\n        \"displayName\": \"Federal Criminal Records Search\",\n        \"displayValue\": \"NATIONWIDE (MAY, LOUISE M.)\",\n        \"modifiedDate\": 1617904596483\n    }\n]"},{"id":"d855b9cc-9469-4552-b98e-3c40ad8b7a60","name":"Federal Criminal/Civil - Federal District","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","type":"text","value":"Bearer {{jwt-token}}"}],"body":{"mode":"raw","raw":"[\n    {\n        \"type\": \"FEDERAL_CIVIL_RECORD\",\n        \"values\": [\n            {\n                \"jurisdiction\": {\n                    \"federalDistrict\": \"UTAH\"\n                }\n            }\n        ]\n    }\n]","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients/{{client-guid}}/orders/{{order-guid}}/searches"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"orderSearchGuid\": \"7d50f39e-18df-4a81-9bec-29f1f667517f\",\n        \"status\": \"new\",\n        \"type\": \"FEDERAL_CIVIL_RECORD\",\n        \"displayName\": \"Federal Civil Records Search\",\n        \"displayValue\": \"UTAH (MAY, LOUISE M.)\",\n        \"modifiedDate\": 1617904596483\n    }\n]"},{"id":"5f67f400-71cc-499c-9541-547a05d5af7a","name":"Federal Criminal/Civil - State","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","type":"text","value":"Bearer {{jwt-token}}"}],"body":{"mode":"raw","raw":"[\n    {\n        \"type\": \"FEDERAL_CRIMINAL_RECORD\",\n        \"values\": [\n            {\n                \"jurisdiction\": {\n                    \"stateOrProvince\": \"UTAH\"\n                }\n            }\n        ]\n    }\n]","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients/{{client-guid}}/orders/{{order-guid}}/searches"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"orderSearchGuid\": \"7d50f39e-18df-4a81-9bec-29f1f667517f\",\n        \"status\": \"new\",\n        \"type\": \"FEDERAL_CRIMINAL_RECORD\",\n        \"displayName\": \"Federal Criminal Records Search\",\n        \"displayValue\": \"UTAH (MAY, LOUISE M.)\",\n        \"modifiedDate\": 1617904596483\n    }\n]"},{"id":"64387976-5bea-47b7-b472-b37f638e3e32","name":"Global Security Watch","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","type":"text","value":"Bearer {{jwt-token}}"}],"body":{"mode":"raw","raw":"[\n    {\n        \"type\": \"GLOBAL_SECURITY_WATCH\"\n    }\n]","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients/{{client-guid}}/orders/{{order-guid}}/searches"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"orderSearchGuid\": \"0297d49c-bc9e-4e30-b14b-f08428ef7f3f\",\n        \"status\": \"processing\",\n        \"type\": \"GLOBAL_SECURITY_WATCH\",\n        \"displayName\": \"Global Security Watch List\",\n        \"displayValue\": \"GLEEB, IGNATIUS LEE\",\n        \"modifiedDate\": 1617905016672\n    }\n]"},{"id":"1cc42059-e991-45a0-bd6a-dc0457625970","name":"Global Security Watch - Alias","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","type":"text","value":"Bearer {{jwt-token}}"}],"body":{"mode":"raw","raw":"[\n    {\n        \"type\": \"GLOBAL_SECURITY_WATCH\",\n        \"values\": [\n            {\n                \"aliasGuid\": \"2f50458b-03d9-4ae3-a3e1-4eb247f2da9f\"\n            }\n        ]\n    }\n]","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients/{{client-guid}}/orders/{{order-guid}}/searches"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"orderSearchGuid\": \"0297d49c-bc9e-4e30-b14b-f08428ef7f3f\",\n        \"status\": \"processing\",\n        \"type\": \"GLOBAL_SECURITY_WATCH\",\n        \"displayName\": \"Global Security Watch List\",\n        \"displayValue\": \"GLEEB, IGNATIUS LEE\",\n        \"modifiedDate\": 1617905016672\n    }\n]"},{"id":"02916f9a-2adf-4b64-82be-0abb30e91256","name":"Healthcare Compliance","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","type":"text","value":"Bearer {{jwt-token}}"}],"body":{"mode":"raw","raw":"[\n    {\n        \"type\": \"HEALTHCARE_COMPLIANCE\",\n        \"values\": [\n            {\n                \"licenseGuid\": \"2f50458b-03d9-4ae3-a3e1-4eb247f2da9f\"\n            }\n        ]\n    }\n]","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients/{{client-guid}}/orders/{{order-guid}}/searches"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"orderSearchGuid\": \"0297d49c-bc9e-4e30-b14b-f08428ef7f3f\",\n        \"status\": \"processing\",\n        \"type\": \"HEALTHCARE_COMPLIANCE\",\n        \"displayName\": \"OIG Level 3\",\n        \"displayValue\": \"GLEEB, IGNATIUS LEE\",\n        \"modifiedDate\": 1617905016672\n    }\n]"},{"id":"22ca63e7-d67f-46b4-8d44-adc00f92f30f","name":"Identity Development Custom","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","type":"text","value":"Bearer {{jwt-token}}"}],"body":{"mode":"raw","raw":"[\n    {\n        \"type\": \"IDENTITY_DEVELOPMENT_CUSTOM\",\n        \"customSearchGuid\": \"831cbcad-da30-4b48-bd41-3a0df076587d\"\n    }\n]","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients/{{client-guid}}/orders/{{order-guid}}/searches"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"orderSearchGuid\": \"f74d5dc8-a960-4c8c-866e-9e8a08055318\",\n        \"status\": \"processing\",\n        \"type\": \"IDENTITY_DEVELOPMENT_CUSTOM\",\n        \"displayName\": \"Custom ID Search\",\n        \"displayValue\": \"MAY, LOUISE M.\",\n        \"modifiedDate\": 1617903522914\n    }\n]"},{"id":"33aad854-1215-45de-997f-93f000dd7eb9","name":"International Criminal","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","type":"text","value":"Bearer {{jwt-token}}"}],"body":{"mode":"raw","raw":"[\n    {\n        \"type\": \"INTERNATIONAL_CRIMINAL_RECORD\",\n        \"values\": [\n            {\n                \"jurisdiction\": {\n                    \"country\": \"MEX\"\n                }\n            }\n        ]\n    }\n]","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients/{{client-guid}}/orders/{{order-guid}}/searches"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"orderSearchGuid\": \"02998ffa-0495-479d-ae18-07ed667e85d8\",\n        \"status\": \"new\",\n        \"type\": \"INTERNATIONAL_CRIMINAL_RECORD\",\n        \"displayName\": \"International Criminal Records Search\",\n        \"displayValue\": \"MEXICO (MAY, LOUISE M.)\",\n        \"modifiedDate\": 1617836018878\n    }\n]"},{"id":"48703bb8-fd82-4282-87d3-b3d7e1d8230c","name":"Instant Driving","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","type":"text","value":"Bearer {{jwt-token}}"}],"body":{"mode":"raw","raw":"[\n    {\n        \"type\": \"INSTANT_DRIVING\",\n        \"values\": [\n            {\n                \"licenseGuid\": \"df913a64-9a2c-4ebd-b974-ec0b820c7eaa\"\n            }\n        ]\n    }\n]","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients/{{client-guid}}/orders/{{order-guid}}/searches"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"orderSearchGuid\": \"a6298cde-bfca-46a8-9011-e5d7b9a73f26\",\n        \"status\": \"processing\",\n        \"type\": \"INSTANT_DRIVING\",\n        \"displayName\": \"Instant Driving Records\",\n        \"displayValue\": \"Utah\",\n        \"modifiedDate\": 1618007053251\n    }\n]"},{"id":"868a06c7-9da0-4abd-b61a-7bd5ff03943f","name":"Investigative Custom","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","type":"text","value":"Bearer {{jwt-token}}"}],"body":{"mode":"raw","raw":"[\n    {\n        \"type\": \"INVESTIGATIVE_CUSTOM\",\n        \"customSearchGuid\": \"831cbcad-da30-4b48-bd41-3a0df076587d\"\n    }\n]","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients/{{client-guid}}/orders/{{order-guid}}/searches"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"orderSearchGuid\": \"f74d5dc8-a960-4c8c-866e-9e8a08055318\",\n        \"status\": \"processing\",\n        \"type\": \"INVESTIGATIVE_CUSTOM\",\n        \"displayName\": \"Custom Investigative Search\",\n        \"displayValue\": \"MAY, LOUISE M.\",\n        \"modifiedDate\": 1617903522914\n    }\n]"},{"id":"ab54e2b2-8ac6-47d7-af5d-073f1c993962","name":"Lien and Judgement","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","type":"text","value":"Bearer {{jwt-token}}"}],"body":{"mode":"raw","raw":"[\n    {\n        \"type\": \"LIEN_AND_JUDGMENT\",\n        \"values\": [\n            {\n                \"jurisdiction\": {\n                    \"stateOrProvince\": \"UT\",\n                    \"county\": \"DAVIS\"\n                }\n            }\n        ]\n    }\n]","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients/{{client-guid}}/orders/{{order-guid}}/searches"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"orderSearchGuid\": \"02998ffa-0495-479d-ae18-07ed667e85d8\",\n        \"status\": \"new\",\n        \"type\": \"LIEN_AND_JUDGMENT\",\n        \"displayName\": \"Lien and Judgement Search\",\n        \"displayValue\": \"UT-DAVIS (MAY, LOUISE M.)\",\n        \"modifiedDate\": 1617836018878\n    }\n]"},{"id":"0e196ae0-ee50-4669-9e9e-2278c55619b6","name":"National Criminal Database","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","type":"text","value":"Bearer {{jwt-token}}"}],"body":{"mode":"raw","raw":"[\n    {\n        \"type\": \"NATIONAL_CRIMINAL_DATABASE\"\n    }\n]","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients/{{client-guid}}/orders/{{order-guid}}/searches"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"orderSearchGuid\": \"02998ffa-0495-479d-ae18-07ed667e85d8\",\n        \"status\": \"new\",\n        \"type\": \"NATIONAL_CRIMINAL_DATABASE\",\n        \"displayName\": \"National Criminal Database\",\n        \"displayValue\": \"NATIONWIDE (MAY, LOUISE M.)\",\n        \"modifiedDate\": 1617836018878\n    }\n]"},{"id":"5e8597e5-8cd8-469f-ad63-dd46765a2803","name":"National Criminal Database - Alias","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","type":"text","value":"Bearer {{jwt-token}}"}],"body":{"mode":"raw","raw":"[\n    {\n        \"type\": \"NATIONAL_CRIMINAL_DATABASE\",\n        \"values\": [\n            {\n                \"aliasGuid\": \"bb118ffa-0495-479d-ae18-07ed667e85d8\"\n            }\n        ]\n    }\n]","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients/{{client-guid}}/orders/{{order-guid}}/searches"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"orderSearchGuid\": \"02998ffa-0495-479d-ae18-07ed667e85d8\",\n        \"status\": \"new\",\n        \"type\": \"NATIONAL_CRIMINAL_DATABASE\",\n        \"displayName\": \"National Criminal Database\",\n        \"displayValue\": \"NATIONWIDE (DOE, JOHN M.)\",\n        \"modifiedDate\": 1617836018878\n    }\n]"},{"id":"7f3f162d-82bd-45b9-b4f0-94133bc1a4d4","name":"National Criminal Database Alias","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","type":"text","value":"Bearer {{jwt-token}}"}],"body":{"mode":"raw","raw":"[\n    {\n        \"type\": \"NATIONAL_CRIMINAL_DATABASE_ALIAS\"\n    }\n]","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients/{{client-guid}}/orders/{{order-guid}}/searches"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"orderSearchGuid\": \"02998ffa-0495-479d-ae18-07ed667e85d8\",\n        \"status\": \"new\",\n        \"type\": \"NATIONAL_CRIMINAL_DATABASE_ALIAS\",\n        \"displayName\": \"National Criminal Database\",\n        \"displayValue\": \"NATIONWIDE\",\n        \"modifiedDate\": 1617836018878\n    }\n]"},{"id":"d49f9644-a84f-4b14-937f-240b74b90a30","name":"National Rental Record Database","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","type":"text","value":"Bearer {{jwt-token}}"}],"body":{"mode":"raw","raw":"[\n    {\n        \"type\": \"NATIONAL_RENTAL_RECORD_DATABASE\"\n    }\n]","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients/{{client-guid}}/orders/{{order-guid}}/searches"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"orderSearchGuid\": \"02998ffa-0495-479d-ae18-07ed667e85d8\",\n        \"status\": \"new\",\n        \"type\": \"NATIONAL_RENTAL_RECORD_DATABASE\",\n        \"displayName\": \"National Rental Record Database\",\n        \"displayValue\": \"NATIONWIDE\",\n        \"modifiedDate\": 1617836018878\n    }\n]"},{"id":"cf05e284-ae82-48bb-98d6-402ebb2cd322","name":"Person Search","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","type":"text","value":"Bearer {{jwt-token}}"}],"body":{"mode":"raw","raw":"[\n    {\n        \"type\": \"PERSON_SEARCH\"\n    }\n]","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients/{{client-guid}}/orders/{{order-guid}}/searches"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"orderSearchGuid\": \"02998ffa-0495-479d-ae18-07ed667e85d8\",\n        \"status\": \"new\",\n        \"type\": \"PERSON_SEARCH\",\n        \"displayName\": \"Person Search\",\n        \"displayValue\": \"111-22-1234\",\n        \"modifiedDate\": 1617836018878\n    }\n]"},{"id":"5fd91b6b-3f35-42fe-9b9e-47bd350e15d5","name":"Person Search - Specific Vendor(s)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","type":"text","value":"Bearer {{jwt-token}}"}],"body":{"mode":"raw","raw":"[\n    {\n        \"type\": \"PERSON_SEARCH\",\n        \"personSearchVendors\": [\n            \"TRADE_HOUSE_DATA\"\n        ]\n    }\n]","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients/{{client-guid}}/orders/{{order-guid}}/searches"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"orderSearchGuid\": \"02998ffa-0495-479d-ae18-07ed667e85d8\",\n        \"status\": \"new\",\n        \"type\": \"PERSON_SEARCH\",\n        \"displayName\": \"Person Search\",\n        \"displayValue\": \"111-22-1234\",\n        \"modifiedDate\": 1617836018878\n    }\n]"},{"id":"35012675-6ceb-47ea-a52b-66de91f533d6","name":"Personal Reference Verification","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","type":"text","value":"Bearer {{jwt-token}}"}],"body":{"mode":"raw","raw":"[\n    {\n        \"type\": \"PERSONAL_REFERENCE_VERIFICATION\",\n        \"values\": [\n            {\n                \"referenceGuid\": \"831cbcad-da30-4b48-bd41-3a0df076587d\"\n            }\n        ]\n    }\n]","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients/{{client-guid}}/orders/{{order-guid}}/searches"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"orderSearchGuid\": \"02998ffa-0495-479d-ae18-07ed667e85d8\",\n        \"status\": \"new\",\n        \"type\": \"PERSONAL_REFERENCE_VERIFICATION\",\n        \"displayName\": \"Personal Reference Verification\",\n        \"displayValue\": \"John Doe\",\n        \"modifiedDate\": 1617836018878\n    }\n]"},{"id":"bbbe7555-c9b4-411e-9187-68b0ff19b081","name":"Professional Reference Verification","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","type":"text","value":"Bearer {{jwt-token}}"}],"body":{"mode":"raw","raw":"[\n    {\n        \"type\": \"PROFESSIONAL_REFERENCE_VERIFICATION\",\n        \"values\": [\n            {\n                \"referenceGuid\": \"831cbcad-da30-4b48-bd41-3a0df076587d\"\n            }\n        ]\n    }\n]","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients/{{client-guid}}/orders/{{order-guid}}/searches"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"orderSearchGuid\": \"02998ffa-0495-479d-ae18-07ed667e85d8\",\n        \"status\": \"new\",\n        \"type\": \"PROFESSIONAL_REFERENCE_VERIFICATION\",\n        \"displayName\": \"Professional Reference Verification\",\n        \"displayValue\": \"John Doe\",\n        \"modifiedDate\": 1617836018878\n    }\n]"},{"id":"ee564941-684a-4cca-b22c-4b877064365c","name":"Professional License","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","type":"text","value":"Bearer {{jwt-token}}"}],"body":{"mode":"raw","raw":"[\n    {\n        \"type\": \"PROFESSIONAL_LICENSE\",\n        \"values\": [\n            {\n                \"licenseGuid\": \"831cbcad-da30-4b48-bd41-3a0df076587d\"\n            }\n        ]\n    }\n]","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients/{{client-guid}}/orders/{{order-guid}}/searches"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"orderSearchGuid\": \"02998ffa-0495-479d-ae18-07ed667e85d8\",\n        \"status\": \"new\",\n        \"type\": \"PROFESSIONAL_LICENSE\",\n        \"displayName\": \"Professional License Verification\",\n        \"displayValue\": \"ABC1234564\",\n        \"modifiedDate\": 1617836018878\n    }\n]"},{"id":"2bfe1c11-627b-4102-a4d5-ddd4247c7177","name":"PSP Crash Inspection","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","type":"text","value":"Bearer {{jwt-token}}"}],"body":{"mode":"raw","raw":"[\n    {\n        \"type\": \"PSP_CRASH_INSPECTION\",\n        \"pspCrashInspectionData\": [\n            {\n                \"driverConsentReceived\": true,\n                \"licenseNumber\": \"123456789\",\n                \"stateOfIssue\": \"UT\",\n                \"lastNameOnLicense\": \"DOE\",\n                \"firstNameOnLicense\": \"JOHN\"\n            }\n        ]\n    }\n]","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients/{{client-guid}}/orders/{{order-guid}}/searches"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"orderSearchGuid\": \"487bc228-bf31-45bf-b350-cf23e40f61c7\",\n        \"status\": \"processing\",\n        \"type\": \"PSP_CRASH_INSPECTION\",\n        \"displayName\": \"PSP Crash And Inspection History\",\n        \"displayValue\": \"DOE, JOHN\",\n        \"modifiedDate\": 1618008071584\n    }\n]"},{"id":"2b24a684-e83b-4e45-b4a0-14b4f8fbc83e","name":"Public Records","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","type":"text","value":"Bearer {{jwt-token}}"}],"body":{"mode":"raw","raw":"[\n    {\n        \"type\": \"PUBLIC_RECORDS\"\n    }\n]","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients/{{client-guid}}/orders/{{order-guid}}/searches"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"orderSearchGuid\": \"05419be5-95ec-4ae7-b0b3-7811371bb77f\",\n        \"status\": \"new\",\n        \"type\": \"PUBLIC_RECORDS\",\n        \"displayName\": \"Public Records\",\n        \"displayValue\": \"MAY, LOUISE M.\",\n        \"modifiedDate\": 1618008188320\n    }\n]"},{"id":"3a2eb07a-7f7f-4ae5-83b7-0f5afd45288b","name":"Reference Verification","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","type":"text","value":"Bearer {{jwt-token}}"}],"body":{"mode":"raw","raw":"[\n    {\n        \"type\": \"REFERENCE_VERIFICATION\",\n        \"values\": [\n            {\n                \"referenceGuid\": \"831cbcad-da30-4b48-bd41-3a0df076587d\"\n            }\n        ]\n    }\n]","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients/{{client-guid}}/orders/{{order-guid}}/searches"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"orderSearchGuid\": \"02998ffa-0495-479d-ae18-07ed667e85d8\",\n        \"status\": \"new\",\n        \"type\": \"REFERENCE_VERIFICATION\",\n        \"displayName\": \"Reference Verification\",\n        \"displayValue\": \"John Doe\",\n        \"modifiedDate\": 1617836018878\n    }\n]"},{"id":"3927f5e5-b569-4fec-aaeb-5091b67f0a38","name":"Report Summarization Custom","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","type":"text","value":"Bearer {{jwt-token}}"}],"body":{"mode":"raw","raw":"[\n    {\n        \"type\": \"REPORT_SUMMARIZATION_CUSTOM\",\n        \"customSearchGuid\": \"831cbcad-da30-4b48-bd41-3a0df076587d\"\n    }\n]","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients/{{client-guid}}/orders/{{order-guid}}/searches"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"orderSearchGuid\": \"f74d5dc8-a960-4c8c-866e-9e8a08055318\",\n        \"status\": \"processing\",\n        \"type\": \"REPORT_SUMMARIZATION_CUSTOM\",\n        \"displayName\": \"Custom Report Summary Search\",\n        \"displayValue\": \"MAY, LOUISE M.\",\n        \"modifiedDate\": 1617903522914\n    }\n]"},{"id":"d0836198-fb75-496b-a5cc-9d1eb24773d7","name":"Residence Verification","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","type":"text","value":"Bearer {{jwt-token}}"}],"body":{"mode":"raw","raw":"[\n    {\n        \"type\": \"RESIDENCE_VERIFICATION\",\n        \"values\": [\n            {\n                \"addressGuid\": \"aaad5dc8-a960-4c8c-866e-9e8a08055318\"\n            }\n        ]\n    }\n]","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients/{{client-guid}}/orders/{{order-guid}}/searches"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"orderSearchGuid\": \"f74d5dc8-a960-4c8c-866e-9e8a08055318\",\n        \"status\": \"processing\",\n        \"type\": \"RESIDENCE_VERIFICATION\",\n        \"displayName\": \"Residence Verification\",\n        \"displayValue\": \"JOHN LANDLORD\",\n        \"modifiedDate\": 1617903522914\n    }\n]"},{"id":"47ae2cc9-1785-4563-9625-a1623dd13492","name":"Scorecard Pro","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","type":"text","value":"Bearer {{jwt-token}}"}],"body":{"mode":"raw","raw":"[\n    {\n        \"type\": \"SCORECARD_PRO\"\n    }\n]","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients/{{client-guid}}/orders/{{order-guid}}/searches"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"orderSearchGuid\": \"f74d5dc8-a960-4c8c-866e-9e8a08055318\",\n        \"status\": \"processing\",\n        \"type\": \"SCORECARD_PRO\",\n        \"displayName\": \"Scorecard Pro\",\n        \"displayValue\": \"DOE, JOHN\",\n        \"modifiedDate\": 1617903522914\n    }\n]"},{"id":"34b8d58e-2a9a-4764-9615-f60593082436","name":"Sex Offender - Nationwide","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","type":"text","value":"Bearer {{jwt-token}}"}],"body":{"mode":"raw","raw":"[\n    {\n        \"type\": \"SEX_OFFENDER_RECORD\"\n    }\n]","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients/{{client-guid}}/orders/{{order-guid}}/searches"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"orderSearchGuid\": \"7d50f39e-18df-4a81-9bec-29f1f667517f\",\n        \"status\": \"new\",\n        \"type\": \"SEX_OFFENDER_RECORD\",\n        \"displayName\": \"Sex Offender Records Search\",\n        \"displayValue\": \"NATIONWIDE (MAY, LOUISE M.)\",\n        \"modifiedDate\": 1617904596483\n    }\n]"},{"id":"f2498181-c64a-42be-b0f2-d708b37d39f2","name":"Sex Offender","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","type":"text","value":"Bearer {{jwt-token}}"}],"body":{"mode":"raw","raw":"[\n    {\n        \"type\": \"SEX_OFFENDER_RECORD\",\n        \"values\": [\n            {\n                \"jurisdiction\": {\n                    \"stateOrProvince\": \"UT\"\n                }\n            }\n        ]\n    }\n]","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients/{{client-guid}}/orders/{{order-guid}}/searches"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"orderSearchGuid\": \"7d50f39e-18df-4a81-9bec-29f1f667517f\",\n        \"status\": \"new\",\n        \"type\": \"SEX_OFFENDER_RECORD\",\n        \"displayName\": \"Sex Offender Records Search\",\n        \"displayValue\": \"UTAH (MAY, LOUISE M.)\",\n        \"modifiedDate\": 1617904596483\n    }\n]"},{"id":"f9fb5db6-b31a-4d60-94e6-9183b03dec43","name":"Social Media","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","type":"text","value":"Bearer {{jwt-token}}"}],"body":{"mode":"raw","raw":"[\n    {\n        \"type\": \"SOCIAL_MEDIA\",\n        \"socialMediaData\": {\n            \"employmentGuid\": \"e28dc1ac-9b01-4b70-a8b2-ea79deb1990a\",\n            \"educationGuid\": \"7840ddaf-2678-467e-a05b-cffd2ffc8b2f\",\n        \"platforms\": [\n            {\n                \"platformName\": \"facebook\",\n                \"handle\": \"nimrod\"\n            }\n        ]\n        }\n    }\n]","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients/{{client-guid}}/orders/{{order-guid}}/searches"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"orderSearchGuid\": \"2bbd9585-a261-4eda-b632-93357f55da9f\",\n        \"status\": \"new\",\n        \"type\": \"SOCIAL_MEDIA\",\n        \"displayName\": \"Social Media\",\n        \"displayValue\": \"GORCZANY, STUART M.\",\n        \"modifiedDate\": 1645577646124\n    }\n]"},{"id":"657cb1e7-dcda-4b97-92e9-eb701379f020","name":"Social Security","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","type":"text","value":"Bearer {{jwt-token}}"}],"body":{"mode":"raw","raw":"[\n    {\n        \"type\": \"SOCIAL_SECURITY_SEARCH\"\n    }\n]","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients/{{client-guid}}/orders/{{order-guid}}/searches"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"orderSearchGuid\": \"7d50f39e-18df-4a81-9bec-29f1f667517f\",\n        \"status\": \"new\",\n        \"type\": \"SOCIAL_SECURITY_SEARCH\",\n        \"displayName\": \"Social Security Search\",\n        \"displayValue\": \"123-45-7890\",\n        \"modifiedDate\": 1617904596483\n    }\n]"},{"id":"3b469887-1c3e-44a3-8535-11126abb6d73","name":"State Criminal Court","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","type":"text","value":"Bearer {{jwt-token}}"}],"body":{"mode":"raw","raw":"[\n    {\n        \"type\": \"STATE_CRIMINAL_COURT\",\n        \"values\": [\n            {\n                \"jurisdiction\": {\n                    \"stateOrProvince\": \"UT\"\n                }\n            }\n        ]\n    }\n]","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients/{{client-guid}}/orders/{{order-guid}}/searches"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"orderSearchGuid\": \"7d50f39e-18df-4a81-9bec-29f1f667517f\",\n        \"status\": \"new\",\n        \"type\": \"STATE_CRIMINAL_COURT\",\n        \"displayName\": \"State Criminal Records Search\",\n        \"displayValue\": \"UTAH (MAY, LOUISE M.)\",\n        \"modifiedDate\": 1617904596483\n    }\n]"},{"id":"6c6c70d8-df20-47a1-87d0-1012f767c8bc","name":"State Criminal Database","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","type":"text","value":"Bearer {{jwt-token}}"}],"body":{"mode":"raw","raw":"[\n    {\n        \"type\": \"STATE_CRIMINAL_DATABASE\",\n        \"values\": [\n            {\n                \"jurisdiction\": {\n                    \"stateOrProvince\": \"UT\"\n                }\n            }\n        ]\n    }\n]","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients/{{client-guid}}/orders/{{order-guid}}/searches"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"orderSearchGuid\": \"7d50f39e-18df-4a81-9bec-29f1f667517f\",\n        \"status\": \"new\",\n        \"type\": \"STATE_CRIMINAL_DATABASE\",\n        \"displayName\": \"State Criminal Database\",\n        \"displayValue\": \"UTAH (MAY, LOUISE M.)\",\n        \"modifiedDate\": 1617904596483\n    }\n]"},{"id":"6d46a952-e6f6-4ca4-bae9-6aa3c0e43491","name":"State Rental Records","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","type":"text","value":"Bearer {{jwt-token}}"}],"body":{"mode":"raw","raw":"[\n    {\n        \"type\": \"STATE_RENTAL_RECORD_DATABASE\",\n        \"values\": [\n            {\n                \"jurisdiction\": {\n                    \"stateOrProvince\": \"UT\"\n                }\n            }\n        ]\n    }\n]","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients/{{client-guid}}/orders/{{order-guid}}/searches"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"orderSearchGuid\": \"7d50f39e-18df-4a81-9bec-29f1f667517f\",\n        \"status\": \"new\",\n        \"type\": \"STATE_RENTAL_RECORD_DATABASE\",\n        \"displayName\": \"State Rental Records\",\n        \"displayValue\": \"UTAH (MAY, LOUISE M.)\",\n        \"modifiedDate\": 1617904596483\n    }\n]"},{"id":"a89e105a-cbcb-4281-affe-108f7631a93c","name":"Substance Abuse Screening Custom","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","type":"text","value":"Bearer {{jwt-token}}"}],"body":{"mode":"raw","raw":"[\n    {\n        \"type\": \"SUBSTANCE_ABUSE_SCREENING_CUSTOM\",\n        \"customSearchGuid\": \"831cbcad-da30-4b48-bd41-3a0df076587d\"\n    }\n]","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients/{{client-guid}}/orders/{{order-guid}}/searches"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"orderSearchGuid\": \"f74d5dc8-a960-4c8c-866e-9e8a08055318\",\n        \"status\": \"processing\",\n        \"type\": \"SUBSTANCE_ABUSE_SCREENING_CUSTOM\",\n        \"displayName\": \"Custom Drug Search\",\n        \"displayValue\": \"MAY, LOUISE M.\",\n        \"modifiedDate\": 1617903522914\n    }\n]"},{"id":"6206941f-cdaa-44ea-9eb2-58f67a9c2957","name":"Tenant Scorecard","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","type":"text","value":"Bearer {{jwt-token}}"}],"body":{"mode":"raw","raw":"[\n    {\n        \"type\": \"TENANT_SCORECARD\"\n    }\n]","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients/{{client-guid}}/orders/{{order-guid}}/searches"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"orderSearchGuid\": \"f74d5dc8-a960-4c8c-866e-9e8a08055318\",\n        \"status\": \"processing\",\n        \"type\": \"TENANT_SCORECARD\",\n        \"displayName\": \"Tenant Scorecard\",\n        \"displayValue\": \"JOHN DOE\",\n        \"modifiedDate\": 1617903522914\n    }\n]"},{"id":"096dff63-356c-4126-84de-790e3b413c0f","name":"Verification Custom","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","type":"text","value":"Bearer {{jwt-token}}"}],"body":{"mode":"raw","raw":"[\n    {\n        \"type\": \"VERIFICATION_CUSTOM\",\n        \"customSearchGuid\": \"831cbcad-da30-4b48-bd41-3a0df076587d\"\n    }\n]","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients/{{client-guid}}/orders/{{order-guid}}/searches"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"orderSearchGuid\": \"f74d5dc8-a960-4c8c-866e-9e8a08055318\",\n        \"status\": \"processing\",\n        \"type\": \"VERIFICATION_CUSTOM\",\n        \"displayName\": \"Verification Custom Search\",\n        \"displayValue\": \"MAY, LOUISE M.\",\n        \"modifiedDate\": 1617903522914\n    }\n]"},{"id":"29725f8c-b625-46b5-9344-9114d007bf1e","name":"Workers Compensation","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","type":"text","value":"Bearer {{jwt-token}}"}],"body":{"mode":"raw","raw":"[\n    {\n        \"type\": \"WORKERS_COMPENSATION\",\n        \"values\": [\n            {\n                \"jurisdiction\": {\n                    \"stateOrProvince\": \"UT\"\n                }\n            }\n        ]\n    }\n]","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients/{{client-guid}}/orders/{{order-guid}}/searches"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"orderSearchGuid\": \"7d50f39e-18df-4a81-9bec-29f1f667517f\",\n        \"status\": \"new\",\n        \"type\": \"WORKERS_COMPENSATION\",\n        \"displayName\": \"Workers Compensation Report\",\n        \"displayValue\": \"UTAH (MAY, LOUISE M.)\",\n        \"modifiedDate\": 1617904596483\n    }\n]"}],"_postman_id":"d395397b-e819-4950-a878-e6fad9b5ec56"},{"name":"Cancel Order","id":"894eef19-af20-4afc-acad-607f4e7bc751","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/orders/{{order-guid}}/cancel?removeCharges=true","description":"<p><strong>CRA API, Order API</strong></p>\n<p>Cancel an order.</p>\n<p>A user with CRA API permissions can cancel an order while the order is still in an active state.</p>\n<p>A user with the Order API permisions can cancel an order in Applicant Pending, Applicant Ready, and XML Ready status.</p>\n<p>If you want to remove un-invoiced charges, include the <code>removeCharge</code> parameter and set its value to <code>true</code>.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}","orders","{{order-guid}}","cancel"],"host":["{{host}}"],"query":[{"description":{"content":"<p>(optional) remove un-invoiced charges</p>\n","type":"text/plain"},"key":"removeCharges","value":"true"}],"variable":[]}},"response":[{"id":"932e47f9-88cb-406b-a2ae-ced4c320bdbf","name":"Cancel Order - Not Allowed","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/orders/{{order-guid}}/cancel"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": \"NOT_AUTHORIZED\",\n    \"message\": \"User does not have permission to cancel an order.\"\n}"},{"id":"ae4472d3-7917-4088-8d4c-7b1b1d13167f","name":"Cancel Order","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/orders/{{order-guid}}/cancel"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"\"This order has been cancelled.\""}],"_postman_id":"894eef19-af20-4afc-acad-607f4e7bc751"},{"name":"Order Status ","id":"5cbbeb53-d7b9-4cca-8e6b-84fd3aaf2cb0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/orders/{{order-guid}}/status?includeSsn=true&includeDob=true","description":"<p><strong>Order API</strong></p>\n<p>Request the status of an Order. The <code>reportUrl</code> will contain a link that you can use to view the report results for the Order.</p>\n<p>If data postbacks have been enabled and the client allows applicant's social security number and/or date of birth to be returned, you may request those by including the parameters for them.</p>\n<p>Possible Order Statuses:</p>\n<p>* app-pending<br />* app-ready<br />* canceled<br />* client message<br />* complete<br />* dispatched qc<br />* draft<br />* end-user<br />* internal-error<br />* new<br />* pending<br />* pending review<br />* pre-pull<br />* qa review<br />* archived</p>\n","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}","orders","{{order-guid}}","status"],"host":["{{host}}"],"query":[{"description":{"content":"<p>(optional) request SSN if applicable</p>\n","type":"text/plain"},"key":"includeSsn","value":"true"},{"description":{"content":"<p>(optional) request DOB if applicable.</p>\n","type":"text/plain"},"key":"includeDob","value":"true"}],"variable":[]}},"response":[{"id":"8fcb9ce9-6646-40f7-9494-50fcac9738db","name":"Order Status Response","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/orders/{{order-guid}}/status"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"orderDetail\": {\n        \"externalIdentifier\": \"202\",\n        \"fileNumber\": 1011,\n        \"status\": \"new\",\n        \"reportUrl\": \"https://foo-link\"\n    },\n    \"coApplicantDetails\": []\n}"},{"id":"468768bd-24b4-4046-9b15-7f7ad932712d","name":"Order Status Response with Co-Applicants","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/orders/{{order-guid}}/status"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"orderDetail\": {\n        \"externalIdentifier\": \"101\",\n        \"fileNumber\": 1153,\n        \"status\": \"pending\",\n        \"reportUrl\": \"https://foo-linkA\"\n    },\n    \"coApplicantDetails\": [\n        {\n            \"fileNumber\": 1154,\n            \"status\": \"pending\",\n            \"reportUrl\": \"https://foo-linkB\"\n        }\n    ]\n}"},{"id":"dbcf37b0-731a-4a3b-8db7-2a33cee6aba9","name":"Order Status with DOB/SSN","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":{"raw":"https://{{host}}/v1/clients/{{client-guid}}/orders/{{order-guid}}/status?includeSsn=true&includeDob=true","protocol":"https","host":["{{host}}"],"path":["v1","clients","{{client-guid}}","orders","{{order-guid}}","status"],"query":[{"key":"includeSsn","value":"true","type":"text"},{"key":"includeDob","value":"true","type":"text"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"orderDetail\": {\n        \"externalIdentifier\": \"REF-hello-world\",\n        \"fileNumber\": 3949,\n        \"status\": \"complete\",\n        \"reportUrl\": \"https:foo-link\",\n        \"reportUrlLoginRequired\": \"https://localhost/editor/viewReport.taz?file=3949\",\n        \"applicantSsn\": \"555-10-3333\",\n        \"applicantDateOfBirth\": \"1944-03-08\"\n    },\n    \"coApplicantDetails\": []"}],"_postman_id":"5cbbeb53-d7b9-4cca-8e6b-84fd3aaf2cb0"},{"name":"Order Results as PDF","id":"af080938-3e57-4eee-84d7-fc2558adb1e9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/orders/{{order-guid}}/resultsAsPdf","description":"<p><strong>Order API</strong></p>\n<p>Request a link to get the Order results as a PDF file.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}","orders","{{order-guid}}","resultsAsPdf"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"bc46717e-d4c9-49af-b0d1-8fe5145c8007","name":"Order Results as PDF","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{jwt-token}}"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/orders/{{order-guid}}/resultsAsPdf"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"resultsUrl\": \"https://localhost/send/interchangeview/?a=bsmuhsg2s5gGPMdJ6f1l4KBH9SgUvaVAhPeBS&b=365&c=rptview&file=4112&format=pdf\",\n    \"externalIdentifier\": \"external-ref\"\n}"}],"_postman_id":"af080938-3e57-4eee-84d7-fc2558adb1e9"},{"name":"Add Notes to Report","id":"d010a2ff-b906-41b5-b288-0e4707822138","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}"}],"body":{"mode":"raw","raw":"{\n    \"clientNotes\": \"We are watching this closely.\",\n    \"reportNotes\": \"<b>HELLO WORLD</b>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients/{{client-guid}}/orders/{{order-guid}}/notes","description":"<p><strong>CRA API, CLIENT API</strong></p>\n<p>Add client and/or report notes to a report. Client Api user can only add client notes.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>clientNotes</strong> <em>string</em></td>\n<td>Client notes to add to a report.</td>\n</tr>\n<tr>\n<td><strong>reportNotes</strong> <em>string</em></td>\n<td>Report notes to add to a report.  Must have CRA api permissions to add report notes.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}","orders","{{order-guid}}","notes"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"893fcb95-acbc-4310-9536-b4ca60c748f9","name":"Add Notes to Report","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}"}],"body":{"mode":"raw","raw":"{\n    \"clientNotes\": \"We are watching this closely.\",\n    \"reportNotes\": \"<b>HELLO WORLD</b>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients/{{client-guid}}/orders/{{order-guid}}/notes"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"\"Notes were successfully added.\""},{"id":"8dbc8362-876a-4c6d-9cbf-85f84279c188","name":"No permission","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}"}],"body":{"mode":"raw","raw":"{\n    \"clientNotes\": \"We are watching this closely.\",\n    \"reportNotes\": \"<b>HELLO WORLD</b>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients/{{client-guid}}/orders/{{order-guid}}/notes"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": \"PERMISSION_DENIED\",\n    \"message\": \"User must have CRA API type permission to add report notes.\"\n}"}],"_postman_id":"d010a2ff-b906-41b5-b288-0e4707822138"},{"name":"Set Report Decision","id":"fc63fd82-8b51-4b15-b47a-3e8b2e7f6ff1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/orders/{{order-guid}}/decision/{{report-decision-guid}}","description":"<p><strong>CRA Api</strong></p>\n<p>Set or update the report decision for an order. Use the <strong>GET Report Decision</strong> endpoint (under Clients -&gt; Preferences) for a list of the available report decisions.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}","orders","{{order-guid}}","decision","{{report-decision-guid}}"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"7cc76e52-b426-4e14-9355-e650d97fd105","name":"Set Report Decision","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/orders/{{order-guid}}/decision/{{report-decision-guid}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"\"The report decision has been updated.\""}],"_postman_id":"fc63fd82-8b51-4b15-b47a-3e8b2e7f6ff1"},{"name":"Expired Quickapps","id":"0434f2a7-c7dc-407b-91b0-a9fdb532327b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/quickapp/expired","description":"<p><strong>Order API</strong></p>\n<p>Retrieve a list of applicant pending quickapp orders which have expired within the last 30 days.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}","quickapp","expired"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"d4731800-59e3-4a2b-a270-e9b8efac931b","name":"Expired Quickapps","originalRequest":{"method":"GET","header":[{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","type":"text","value":"Bearer {{jwt-token}}"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/quickapp/expired"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"quickappGuid\": \"e9630224-e9bb-4960-92d0-e420a12e5545\",\n        \"applicantName\": \"NED WITTING\",\n        \"expiredDate\": 1687368176000,\n        \"notificationsSent\": 0\n    },\n    {\n        \"quickappGuid\": \"3e1e9993-e0cc-4dee-a281-e1e3e99b50ee\",\n        \"applicantName\": \"BROWN COW\",\n        \"expiredDate\": 1687368346000,\n        \"notificationsSent\": 1,\n        \"lastNotifiedDate\": 1686158746000\n    },\n    {\n        \"quickappGuid\": \"1cd1ad1e-e362-4c04-9c44-d0b1d2c5f4c6\",\n        \"applicantName\": \"KEARA DIETRICH\",\n        \"expiredDate\": 1687373034000,\n        \"notificationsSent\": 1,\n        \"lastNotifiedDate\": 1686163441000\n    },\n    {\n        \"quickappGuid\": \"70b21900-ef42-4c72-9f7f-0edc7f4ce812\",\n        \"applicantName\": \"TOD LANGOSH\",\n        \"expiredDate\": 1687375164000,\n        \"notificationsSent\": 0\n    },\n    {\n        \"quickappGuid\": \"a0bc05ea-c24d-4cfa-913a-a1a16ed9730e\",\n        \"applicantName\": \"RUDY RICE\",\n        \"expiredDate\": 1687376284000,\n        \"notificationsSent\": 0\n    }\n]"}],"_postman_id":"0434f2a7-c7dc-407b-91b0-a9fdb532327b"},{"name":"Reset Quickapp Expiration","id":"960faebb-b918-4e56-8ac2-ce6407a9aa58","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/quickapp/{{quickapp-guid}}/reset","description":"<p><strong>Order API</strong></p>\n<p>Reset the expiration date for a quickapp order. A new link will be generated and sent to the applicant.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}","quickapp","{{quickapp-guid}}","reset"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"b52cb445-f83b-4c0d-8e52-8670d91f3917","name":"Reset Quickapp Expiration","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/quickapp/{{quickapp-guid}}/reset"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"quickappGuid\": \"462d3017-7fd8-45d8-a20b-34bbb9ef866e\",\n    \"applicantName\": \"WEE SNEDDON\",\n    \"expiredDate\": 1688749008000,\n    \"notificationsSent\": 1,\n    \"lastNotifiedDate\": 1687539421115\n}"}],"_postman_id":"960faebb-b918-4e56-8ac2-ce6407a9aa58"},{"name":"Drug Panels","id":"58df00bc-d44c-4ece-a43f-a5b798df6273","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/products/collection/panels","description":"<p><strong>Order API, Client API</strong></p>\n<p>Retrieve a list of valid drug product panels to be used in the Occupational Health search.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}","products","collection","panels"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"f957549f-3e16-407d-b1bc-21843ded55b8","name":"Drug Panels","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/products/collection/panels"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"guid\": \"e0b48c8f-466c-4818-b646-884a78ac0870\",\n        \"name\": \"DOT Panel\",\n        \"description\": \"Standard DOT Substance Abuse Screening Panel\",\n        \"type\": \"dot\",\n        \"drugsScreened\": \"Amphetamines; Cannabinoids; Cocaine; Opiates; Phencyclidine; MDA Methylenedioxyamphetamine\",\n        \"specimenType\": \"Blood\"\n    },\n    {\n        \"guid\": \"e0b48c8f-466c-4818-b646-884a78ac0872\",\n        \"name\": \"DOT Panel 2\",\n        \"description\": null,\n        \"type\": \"dot\",\n        \"drugsScreened\": \"Amphetamines; Cannabinoids; Cocaine; MDA Methylenedioxyamphetamine; Opiates; Phencyclidine\",\n        \"specimenType\": \"Blood\"\n    },\n    {\n        \"guid\": \"e0b48c8f-466c-4818-b646-884a78ac0873\",\n        \"name\": \"NON-DOT Panel\",\n        \"description\": \"Standard NON-DOT Urine Panel\",\n        \"type\": \"nondot\",\n        \"drugsScreened\": \"Amphetamines; Cocaine; Opiates; Propoxyphene; Methadone\",\n        \"specimenType\": \"Urine\"\n    }\n]"}],"_postman_id":"58df00bc-d44c-4ece-a43f-a5b798df6273"},{"name":"Health Services","id":"8f8618cc-d6c8-4754-8386-7a3e83cd136d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/products/collection/healthservices","description":"<p><strong>Order API</strong></p>\n<p>Retrieve a list of valid health services to be used in the Occupational Health search.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}","products","collection","healthservices"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"ce07823e-9ad7-41bd-ac02-76cbf4c59650","name":"Health Services","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/products/collection/healthservices"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"guid\": \"a4de9730-5da7-4e16-b84c-7d67c8e25222\",\n        \"name\": \"Health Service 2\",\n        \"description\": \"Another health service\"\n    },\n    {\n        \"guid\": \"cc983891-8807-44cd-a8b2-4cac09c87b54\",\n        \"name\": \"My Health Service\"\n    }\n]"}],"_postman_id":"8f8618cc-d6c8-4754-8386-7a3e83cd136d"}],"id":"36b1073a-0a23-431e-8b52-f198d9fac532","description":"<p>Endpoints for working with background checks (also referred to as orders).  The Basic Order endpoint shows the fields covering most orders/searches.  Orders requiring extra elements are detailed below.</p>\n<p>In this release of the API, orders will be submitted using configuration defaults.  This means that searches which are marked as required or default will be included.</p>\n<p>Quickapp orders send an invitation to the applicant allowing them to fill out their personal information themselves.  That information will then be automatically entered back into the report of the order.  The invitation is sent through email and will be sent every 24 hours up to the number of active days defined in the quickapp settings.  If the user has enabled text messaging, they will also receive an invitation by text.</p>\n","event":[{"listen":"prerequest","script":{"id":"c9ba230d-53c8-4be8-b487-6609e6e74beb","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"9d216825-8f10-4d26-bbbc-b032a6f1284b","type":"text/javascript","exec":[""]}}],"_postman_id":"36b1073a-0a23-431e-8b52-f198d9fac532","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}}},{"name":"Clients","item":[{"name":"Fees","item":[{"name":"Set Client Fees","event":[{"listen":"test","script":{"id":"10f8e8cf-75bb-488a-8fa8-2e6ca3cd3126","exec":[""],"type":"text/javascript"}}],"id":"f310d9c4-79db-4561-9657-278d2c77577a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"predefinedFeeTableGuid\": \"c7c77666-967b-11e9-bd55-efe7b9e554f2\",\n    \"recurringCharges\": [\n        {\n            \"chargeGuid\": null,\n            \"description\": \"New fee\",\n            \"month\": \"MARCH\",\n            \"day\": 10,\n            \"amount\": 3.55\n        }\n    ]\n}"},"url":"https://{{host}}/v1/clients/{{client-guid}}/fees","description":"<p><strong>Client API</strong></p>\n<p>Set the predefined fees and recurring charges for a client. </p>\n<p>See <strong>Predefined Fee Tables</strong> for a list of the client's predefined fee tables.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>predefinedFeeTableGuid</strong> <em>uuid</em></td>\n<td>The identifier for the fee table you want to use for predefined fees.</td>\n</tr>\n<tr>\n<td><strong>recurringCharges</strong> <em>collection</em></td>\n<td>One or more <code>recurringCharge</code> objects.</td>\n</tr>\n</tbody>\n</table>\n</div><p><code>recurringCharge</code> object</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>chargeGuid</strong> <em>uuid</em></td>\n<td>Identifier for the recurring charge.</td>\n</tr>\n<tr>\n<td><strong>description</strong> <em>string</em></td>\n<td>The description for the charge.</td>\n</tr>\n<tr>\n<td><strong>month</strong> <em>required, string</em></td>\n<td>The <code>month</code> where the charge will be applied. Set to <em>MONTHLY</em> if the charge should be applied every month.</td>\n</tr>\n<tr>\n<td><strong>day</strong> <em>required, integer</em></td>\n<td>The day of the month (between 1 and 31) the charge will be applied.</td>\n</tr>\n<tr>\n<td><strong>amount</strong> <em>required, double</em></td>\n<td>The amount of the charge.</td>\n</tr>\n</tbody>\n</table>\n</div><p>Valid <code>month</code> values are:</p>\n<ul>\n<li>MONTHLY</li>\n<li>JANUARY</li>\n<li>FEBRUARY</li>\n<li>MARCH</li>\n<li>APRIL</li>\n<li>MAY</li>\n<li>JUNE</li>\n<li>JULY</li>\n<li>AUGUST</li>\n<li>SEPTEMBER</li>\n<li>OCTOBER</li>\n<li>NOVEMBER</li>\n<li>DECEMBER</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}","fees"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"c7f23df0-e579-425b-99e4-969727cf95f6","name":"Set Client Fees","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"predefinedFeeTableGuid\": \"c7c77666-967b-11e9-bd55-efe7b9e554f2\",\n    \"recurringCharges\": [\n        {\n            \"chargeGuid\": null,\n            \"description\": \"New fee\",\n            \"month\": \"MARCH\",\n            \"day\": 10,\n            \"amount\": 3.55\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients/{{client-guid}}/fees"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"predefinedFeeTableGuid\": \"c7c77666-967b-11e9-bd55-efe7b9e554f2\",\n    \"recurringCharges\": [\n        {\n            \"chargeGuid\": \"2cb45e60-7b16-422e-81dc-1119bc7d1e0d\",\n            \"description\": \"New fee\",\n            \"month\": \"MARCH\",\n            \"day\": 10,\n            \"amount\": 3.5\n        }\n    ]\n}"}],"_postman_id":"f310d9c4-79db-4561-9657-278d2c77577a"},{"name":"Predefined Fee Tables","id":"b51fc160-0f14-42c7-9f14-275ad97dcb30","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/fees/tables","description":"<p><strong>Client API</strong></p>\n<p>Get list of predefined fee tables for a client.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}","fees","tables"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"d87d515e-ae51-4a74-938b-043261ad4fa0","name":"Predefined Fee Tables","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/fees/tables"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"feeTableGuid\": \"c7c77666-967b-11e9-bd55-efe7b9e554f2\",\n        \"tableName\": \"My Fees\",\n        \"description\": \"They're mine.  All mine.\"\n    },\n    {\n        \"feeTableGuid\": \"c7c77774-967b-11e9-bd55-efe7b9e554f2\",\n        \"tableName\": \"Hidden Fees\",\n        \"description\": \"These will sneak up on you.\"\n    },\n    {\n        \"feeTableGuid\": \"c7c5631c-967b-11e9-bd55-efe7b9e554f2\",\n        \"tableName\": \"Standard Fees\",\n        \"description\": \"Simple test table for predefined fees.\"\n    }\n]\n"}],"_postman_id":"b51fc160-0f14-42c7-9f14-275ad97dcb30"},{"name":"Client Fees","event":[{"listen":"test","script":{"id":"f652e84b-17a9-4abe-81b5-9b932f5e22a1","exec":[""],"type":"text/javascript"}}],"id":"525bd552-0244-4fe3-8fe5-109512769655","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/fees","description":"<p><strong>Client API</strong></p>\n<p>Get predefined fees and recurring charges for a client.</p>\n<p>See <strong>Set Client Fees</strong> for field descriptions.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}","fees"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"6e5e3e5b-8927-4cc6-9b2b-b67c7ad41e8d","name":"Client Fees","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/fees"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"predefinedFeeTableGuid\": \"c7c77666-967b-11e9-bd55-efe7b9e554f2\",\n    \"recurringCharges\": [\n        {\n            \"chargeGuid\": \"2cb45e60-7b16-422e-81dc-1119bc7d1e0d\",\n            \"description\": \"New fee\",\n            \"month\": \"MARCH\",\n            \"day\": 10,\n            \"amount\": 3.5\n        }\n    ]\n}"}],"_postman_id":"525bd552-0244-4fe3-8fe5-109512769655"},{"name":"Client Charge","event":[{"listen":"test","script":{"id":"5bb5bcb2-6d0f-4fc9-a5da-1f1500106147","exec":[""],"type":"text/javascript"}}],"id":"114f06e6-4fca-4b5c-9a4e-6b04e2e6a541","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/charges/{{charge-guid}}","description":"<p><strong>Client API</strong></p>\n<p>Get a recurring charge for a client.</p>\n<p>See <strong>Set Client Fees</strong> for the <code>recurringCharge</code> object field descriptions.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}","charges","{{charge-guid}}"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"b50e3116-72ea-4a3c-a280-465297429f1c","name":"Client Charge","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/charges/{{charge-guid}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"chargeGuid\": \"2cb45e60-7b16-422e-81dc-1119bc7d1e0d\",\n    \"description\": \"New fee\",\n    \"month\": \"MARCH\",\n    \"day\": 10,\n    \"amount\": 3.5\n}"}],"_postman_id":"114f06e6-4fca-4b5c-9a4e-6b04e2e6a541"},{"name":"Update Charge","event":[{"listen":"test","script":{"id":"feed3cf1-da5e-41e3-9b80-7311f78f9fd5","exec":[""],"type":"text/javascript"}}],"id":"126b5d2b-4694-4a69-b62e-d226404376e6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"chargeGuid\": \"{{charge-guid}}\",\n    \"description\": \"July Fee\",\n    \"month\": \"JULY\",\n    \"day\": 10,\n    \"amount\": 3.55\n}"},"url":"https://{{host}}/v1/clients/{{client-guid}}/charges/{{charge-guid}}","description":"<p><strong>Client API</strong></p>\n<p>Update a recurring charge for a client.</p>\n<p>See <strong>Set Client Fees</strong> for the <code>recurringCharge</code> object field descriptions.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}","charges","{{charge-guid}}"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"c46720f5-800a-4140-8fe7-3b7d13633ce3","name":"Update Charge","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"chargeGuid\": \"{{charge-guid}}\",\n    \"description\": \"July Fee\",\n    \"month\": \"JULY\",\n    \"day\": 10,\n    \"amount\": 3.55\n}","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients/{{client-guid}}/charges/{{charge-guid}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"chargeGuid\": \"2cb45e60-7b16-422e-81dc-1119bc7d1e0d\",\n    \"description\": \"July fee\",\n    \"month\": \"JULY\",\n    \"day\": 10,\n    \"amount\": 3.55\n}"}],"_postman_id":"126b5d2b-4694-4a69-b62e-d226404376e6"},{"name":"Delete Charge","event":[{"listen":"test","script":{"id":"0496d46d-9fcd-4658-b1ab-a425ac439fd8","exec":[""],"type":"text/javascript"}}],"id":"b8284bed-eb5c-4064-a0a8-599a94eac26c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/charges/{{charge-guid}}","description":"<p><strong>Client API</strong></p>\n<p>Delete a recurring charge for a client.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}","charges","{{charge-guid}}"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"f2d9d7c1-a165-4d5c-8703-01bc37449c2d","name":"Delete Charge","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/charges/{{charge-guid}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"\"Client charge has been deleted.\""}],"_postman_id":"b8284bed-eb5c-4064-a0a8-599a94eac26c"}],"id":"7663bfc3-fcdf-4ce1-8d03-2b3814cbabf1","description":"<p>Endpoints allowing you to update client fees.</p>\n","_postman_id":"7663bfc3-fcdf-4ce1-8d03-2b3814cbabf1","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}}},{"name":"Billing","item":[{"name":"Create Billing","event":[{"listen":"test","script":{"id":"f98293aa-117e-46ff-b410-a22649529a89","exec":[""],"type":"text/javascript"}}],"id":"86a1b6b2-e10b-4adb-854e-55c7cdf32567","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"billingCreditCard\": {\n        \"cardType\": \"MASTERCARD\",\n        \"cardNumber\": \"1234123412341234\",\n        \"cardholderFirstName\": \"JANE\",\n        \"cardholderLastName\": \"DOE\",\n        \"expirationMonth\": 11,\n        \"expirationYear\": 2022,\n        \"address\": {\n            \"streetOne\": \"101 Street\",\n            \"streetTwo\": \"Suite A\",\n            \"city\": \"Chandler\",\n            \"state\": \"AZ\",\n            \"zipCode\": \"85224\",\n            \"country\": \"US\"\n        },\n        \"processingOption\": \"CHARGE_ALTERNATE\",\n        \"chargeAlternateGuideline\": \"REQUIRE_ALTERNATE_CARD\",\n        \"chargeAlternatePopulateOption\": \"POPULATE_WITH_CLIENT\"\n    },\n    \"invoiceOptions\": {\n        \"billingCycle\": \"Fast Cycle\",\n        \"invoiceTerms\": \"Good Terms\",\n        \"taxable\": \"Harsh\",\n        \"salesRep\": \"Bob Smith\",\n        \"exportClass\": \"Slow Class\",\n        \"exportTerms\": \"My Terms\",\n        \"purchaseOrderNumber\": \"10\",\n        \"billingInvoiceMethod\": \"PACKAGE\",\n        \"invoiceSortOrder\": \"BY_APPLICANT_SSN\",\n        \"combineInvoices\": false,\n        \"oneInvoicePerReport\": false,\n        \"emailCopyToRequestor\": false,\n        \"autoEmailInvoice\": false,\n        \"sendInvoiceAsAttachment\": false\n    },\n    \"billingContactName\": \"Contact Sammy\",\n    \"billingContactPhone\": \"(555) 555-4553\",\n    \"billingContactPhoneExtension\": null,\n    \"billingEmail\": \"success@simulator.amazonses.com\"\n}","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients/{{client-guid}}/billing","description":"<p><strong>Client API</strong></p>\n<p>Insert client billing information.</p>\n<p>While all billing information is optional, some fields become required when a credit card is being added.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>billingContactName</strong> <em>string</em></td>\n<td>Name for the main billing contact for a client.  This tells the system who is going to get the invoice or attachments.</td>\n</tr>\n<tr>\n<td><strong>billingContactPhone</strong> <em>string</em></td>\n<td>Phone number for main billing contact.  The number should follow a <code>(###) ###-####</code> format.</td>\n</tr>\n<tr>\n<td><strong>billingContactPhoneExtension</strong> <em>string</em></td>\n<td>Phone number extension for main billing contact. This can be preceeded by an 'x' (i.e. \"1234\", \"x1234\").</td>\n</tr>\n<tr>\n<td><strong>billingEmail</strong> <em>string</em></td>\n<td>Email for main billing contact. This needs to be a valid email format.</td>\n</tr>\n</tbody>\n</table>\n</div><p><code>billingCreditCard</code> object:</p>\n<p>To remove a credit card, call the <strong>Delete Credit Card</strong> endpoint.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>cardType</strong> <em>string</em></td>\n<td>Credit card type. Valid values are <em>AMERICAN_EXPRESS</em>, <em>DISCOVER</em>, <em>MASTERCARD</em>, and <em>VISA</em>.</td>\n</tr>\n<tr>\n<td><strong>cardNumber</strong> <em>string</em></td>\n<td>Credit card number without spaces.</td>\n</tr>\n<tr>\n<td><strong>cardholderFirstName</strong> <em>required, string</em></td>\n<td>First name of the cardholder.</td>\n</tr>\n<tr>\n<td><strong>cardholderLastName</strong> <em>required, string</em></td>\n<td>Last name of the cardholder.</td>\n</tr>\n<tr>\n<td><strong>expirationMonth</strong>, <em>required, integer</em></td>\n<td>2-digit number representing the month of expiration.</td>\n</tr>\n<tr>\n<td><strong>expirationYear</strong>, <em>required, integer</em></td>\n<td>4-digit number representing the year of expiration.</td>\n</tr>\n<tr>\n<td><strong>address</strong> <em>required, <code>address</code></em></td>\n<td>Billing address for the credit card.  This can be domestic or international.</td>\n</tr>\n<tr>\n<td><strong>processingOption</strong> <em>string</em></td>\n<td>Processing option for the credit card.  See below for valid values.</td>\n</tr>\n<tr>\n<td><strong>chargeAlternateGuideline</strong> <em>string</em></td>\n<td>Credit card guideline.  This only applies when an alternate credit card will be charged. See below for valid values.</td>\n</tr>\n<tr>\n<td><strong>chargeAlternatePopulateOption</strong> <em>string</em></td>\n<td>Populate option when an alternate credit card will be charged.  See below for valid values.</td>\n</tr>\n</tbody>\n</table>\n</div><p><code>address</code> object:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>streetOne</strong> <em>required, string</em></td>\n<td>Street address.</td>\n</tr>\n<tr>\n<td><strong>streetTwo</strong> <em>string</em></td>\n<td>Street address line 2.</td>\n</tr>\n<tr>\n<td><strong>city</strong> <em>required, string</em></td>\n<td>City.</td>\n</tr>\n<tr>\n<td><strong>state</strong> <em>required, string</em></td>\n<td>State.</td>\n</tr>\n<tr>\n<td><strong>zipCode</strong> <em>required, string</em></td>\n<td>Zip code.</td>\n</tr>\n<tr>\n<td><strong>country</strong> <em>required, string</em></td>\n<td>Country.</td>\n</tr>\n</tbody>\n</table>\n</div><p>Valid <code>processingOption</code> values:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Option</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>DO_NOT_CHARGE</td>\n<td>Do not process the credit card.</td>\n</tr>\n<tr>\n<td>CHARGE_WHEN_INVOICING</td>\n<td>Charge the credit card when an invoice has been created.</td>\n</tr>\n<tr>\n<td>CHARGE_WHEN_ORDERING</td>\n<td>Users can pay for each file as it is ordered, rather than waiting for the invoice to be charged, or sent out for payment.</td>\n</tr>\n<tr>\n<td>CHARGE_ALTERNATE</td>\n<td>Allow users to pass along the payment expectations to their applicant and require a credit card during order time before the order is placed.</td>\n</tr>\n</tbody>\n</table>\n</div><p>Valid <code>chargeAlternateGuideline</code> values:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Option</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ALLOW_ALTERNATE_CARD</td>\n<td>Allows for the credit card on file or requires an alternate card from the applicant.</td>\n</tr>\n<tr>\n<td>ALLOW_BYPASS_OF_CARD</td>\n<td>Attempts to get the credit card information, but allows the applicant to continue without it.</td>\n</tr>\n<tr>\n<td>REQUIRE_ALTERNATE_CARD</td>\n<td>Requires an alternate credit card to be entered at order time by the applicant.</td>\n</tr>\n</tbody>\n</table>\n</div><p>Valid <code>chargeAlternatePopulateOption</code> values:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Option</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>POPULATE_WITH_APPLICANT</td>\n<td>Pre-populates the fields in the card information with the applicant’s name and address. This would be a good option if the guideline is set to require an alternate card at ordering time; meaning you will always ask the applicant for their card information. It’s simple but makes their life a little bit easier during ordering.</td>\n</tr>\n<tr>\n<td>POPULATE_WITH_CLIENT</td>\n<td>Pre-populates the fields in the card information with the client's name and address.  This is a great option for the CRAs that are charging their client's card when ordering.</td>\n</tr>\n<tr>\n<td>LEAVE_BLANK</td>\n<td>Does not pre-populate any information.  All of the data needs to be filled before checking out.</td>\n</tr>\n</tbody>\n</table>\n</div><p><code>invoiceOptions</code> object:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>billingCycle</strong> <em>string</em></td>\n<td>The billing cycle to be used.  See <strong>Billing Options</strong> for valid values.</td>\n</tr>\n<tr>\n<td><strong>invoiceTerms</strong> <em>string</em></td>\n<td>The invoice terms to use. See <strong>Billing Options</strong> for valid values.</td>\n</tr>\n<tr>\n<td><strong>taxable</strong> <em>string</em></td>\n<td>For clients which are in taxable states.  This is for flat taxes only and is applied per invoice.  It cannot be applied for specific searches.  See <strong>Billing Options</strong> for valid values.</td>\n</tr>\n<tr>\n<td><strong>salesRep</strong> <em>string</em></td>\n<td>A client can be assigned a sales representative.  If sales representatives are paid with commissions, this is a way to keep track of their sales. See <strong>Billing Options</strong> for valid values.</td>\n</tr>\n<tr>\n<td><strong>exportClass</strong> <em>string</em></td>\n<td>The export class to use.  This needs to match what is in the accounting software of choice.  See <strong>Billing Options</strong> for valid values.</td>\n</tr>\n<tr>\n<td><strong>exportTerms</strong> <em>string</em></td>\n<td>Export terms to use.  This needs to match what is in the accounting software being used.  See <strong>Billing Options</strong> for valid values.</td>\n</tr>\n<tr>\n<td><strong>purchaseOrderNumber</strong> <em>string</em></td>\n<td>Purchase order number.</td>\n</tr>\n<tr>\n<td><strong>billingInvoiceMethod</strong> <em>string</em></td>\n<td>This will determine how the invoice is organized.  Valid values are <em>ITEMIZED</em>, <em>PACKAGE</em>, and <em>SUMMARY</em>.  Itemized and package will show each search as a line item on the invoice.  Summary invoice will just show the amount being charged to the client.</td>\n</tr>\n<tr>\n<td><strong>invoiceSortOrder</strong> <em>string</em></td>\n<td>This determines how the invoice will be sorted.  See below for valid values.</td>\n</tr>\n<tr>\n<td><strong>combineInvoices</strong> <em>boolean</em></td>\n<td>If your client has a parent/child relationship, rather than sending the child accounts a separate invoice, this option will combine alll of the children account invoices into a single invoice.  This invoice is sent to the parent account. Defaults to false.</td>\n</tr>\n<tr>\n<td><strong>oneInvoicePerReport</strong> <em>boolean</em></td>\n<td>This will create one invoice per report.  This will create a significantly larger amount of invoices for the client.  Defaults to false.</td>\n</tr>\n<tr>\n<td><strong>emailCopyToRequestor</strong> <em>boolean</em></td>\n<td>If the one invoice for report option is selected, this will let you configure what email to send the invoice to.  Defaults to false.</td>\n</tr>\n<tr>\n<td><strong>autoEmailInvoice</strong> <em>boolean</em></td>\n<td>The system will email you a copy of the invoice when it is created.  Defaults to false.</td>\n</tr>\n<tr>\n<td><strong>sendInvoiceAsAttachment</strong> <em>boolean</em></td>\n<td>The invoice will be sent as an attachment.  Othewise the system will send out an invoice that is inline with the email (part of the body of the email).  Defaults to false.</td>\n</tr>\n</tbody>\n</table>\n</div><p>Valid <code>invoiceSortOrder</code> options:</p>\n<ul>\n<li>SUBTOTAL_BY_REPORT</li>\n<li>SUBTOTAL_BY_ORDER_REFERRENCE</li>\n<li>SUBTOTAL_BY_REQUESTOR</li>\n<li>BY_APPLICANT_NAME</li>\n<li>BY_ORDER_DATE</li>\n<li>BY_ORDER_REFERENCE</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}","billing"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"8234d099-be31-41f7-a56b-9336a59bd6f9","name":"Create Billing","originalRequest":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{jwt-token}}"}],"body":{"mode":"raw","raw":"{\n    \"billingCycleOptions\": \"Red Cycle, Blue Cycle, Orange Cycle\",\n    \"invoiceTermsOptions\": \"Terrible Terms, Good Terms\",\n    \"taxableOptions\": \"Harsh, Lenient\",\n    \"salesRepOptions\": \"Steve Smith, Bob Henry\",\n    \"exportClassOptions\": \"Fast Class, Slow Class, Middling Class\",\n    \"exportTermsOptions\": \"Anything Goes, My Terms, Your Terms\"\n}","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients/{{client-guid}}/billing"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"billingCreditCard\": {\n        \"cardType\": \"MASTERCARD\",\n        \"cardNumber\": \"XXXXXXXXXXXX1234\",\n        \"cardholderFirstName\": \"JANE\",\n        \"cardholderLastName\": \"DOE\",\n        \"expirationMonth\": 11,\n        \"expirationYear\": 2022,\n        \"address\": {\n            \"streetOne\": \"101 Street\",\n            \"streetTwo\": \"Suite A\",\n            \"city\": \"Chandler\",\n            \"state\": \"AZ\",\n            \"zipCode\": \"85224\",\n            \"country\": \"US\"\n        },\n        \"processingOption\": \"CHARGE_ALTERNATE\",\n        \"chargeAlternateGuideline\": \"REQUIRE_ALTERNATE_CARD\",\n        \"chargeAlternatePopulateOption\": \"POPULATE_WITH_CLIENT\"\n    },\n    \"invoiceOptions\": {\n        \"billingCycle\": \"Fast Cycle\",\n        \"invoiceTerms\": \"Good Terms\",\n        \"taxable\": \"Harsh\",\n        \"salesRep\": \"Bob Smith\",\n        \"exportClass\": \"Slow Class\",\n        \"exportTerms\": \"My Terms\",\n        \"purchaseOrderNumber\": \"10\",\n        \"billingInvoiceMethod\": \"PACKAGE\",\n        \"invoiceSortOrder\": \"BY_APPLICANT_SSN\",\n        \"combineInvoices\": false,\n        \"oneInvoicePerReport\": false,\n        \"emailCopyToRequestor\": false,\n        \"autoEmailInvoice\": false,\n        \"sendInvoiceAsAttachment\": false\n    },\n    \"billingContactName\": \"Contact Sammy\",\n    \"billingContactPhone\": \"(555) 555-4553\",\n    \"billingEmail\": \"success@simulator.amazonses.com\"\n}"}],"_postman_id":"86a1b6b2-e10b-4adb-854e-55c7cdf32567"},{"name":"Billing Options","event":[{"listen":"test","script":{"id":"f8b9fe50-44ac-4acc-bc92-8c91d945b8cd","exec":[""],"type":"text/javascript"}}],"id":"1c114795-a96c-4bc0-b05f-6b35e151ee15","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/billing/options","description":"<p><strong>Client API</strong></p>\n<p>Get list of the valid values for various client billing information.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}","billing","options"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"ffc9356a-7cef-4fd0-89ac-5b918bd27d52","name":"Billing Options","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/billing/options"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"billingCycleOptions\": \"Red Cycle, Blue Cycle, Orange Cycle\",\n    \"invoiceTermsOptions\": \"Terrible Terms, Good Terms\",\n    \"taxableOptions\": \"Harsh, Lenient\",\n    \"salesRepOptions\": \"Steve Smith, Bob Henry\",\n    \"exportClassOptions\": \"Fast Class, Slow Class, Middling Class\",\n    \"exportTermsOptions\": \"Anything Goes, My Terms, Your Terms\"\n}"}],"_postman_id":"1c114795-a96c-4bc0-b05f-6b35e151ee15"},{"name":"Billing","event":[{"listen":"test","script":{"id":"8bb60fb6-4b8b-4e02-bb1e-284466a1051b","exec":[""],"type":"text/javascript"}}],"id":"7bfa41bd-c743-4377-ab83-ec31bb5bc36c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/billing","description":"<p><strong>Client API</strong></p>\n<p>Retrieve information about client billing.</p>\n<p>See <strong>Create Billing</strong> for field descriptions.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}","billing"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"8ca3acc9-4105-4d1b-b803-f289ab4d73c8","name":"Billing","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/billing"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"billingCreditCard\": {\n        \"cardType\": \"MASTERCARD\",\n        \"cardNumber\": \"XXXXXXXXXXXX1234\",\n        \"cardholderFirstName\": \"JANE\",\n        \"cardholderLastName\": \"DOE\",\n        \"expirationMonth\": 11,\n        \"expirationYear\": 2022,\n        \"address\": {\n            \"streetOne\": \"101 Street\",\n            \"streetTwo\": \"Suite A\",\n            \"city\": \"Chandler\",\n            \"state\": \"AZ\",\n            \"zipCode\": \"85224\",\n            \"country\": \"US\"\n        },\n        \"processingOption\": \"CHARGE_ALTERNATE\",\n        \"chargeAlternateGuideline\": \"REQUIRE_ALTERNATE_CARD\",\n        \"chargeAlternatePopulateOption\": \"POPULATE_WITH_CLIENT\"\n    },\n    \"invoiceOptions\": {\n        \"billingCycle\": \"Fast Cycle\",\n        \"invoiceTerms\": \"Good Terms\",\n        \"taxable\": \"Harsh\",\n        \"salesRep\": \"Bob Smith\",\n        \"exportClass\": \"Slow Class\",\n        \"exportTerms\": \"My Terms\",\n        \"purchaseOrderNumber\": \"10\",\n        \"billingInvoiceMethod\": \"PACKAGE\",\n        \"invoiceSortOrder\": \"BY_APPLICANT_SSN\",\n        \"combineInvoices\": false,\n        \"oneInvoicePerReport\": false,\n        \"emailCopyToRequestor\": false,\n        \"autoEmailInvoice\": false,\n        \"sendInvoiceAsAttachment\": false\n    },\n    \"billingContactName\": \"Contact Sammy\",\n    \"billingContactPhone\": \"(555) 555-4553\",\n    \"billingEmail\": \"success@simulator.amazonses.com\"\n}"}],"_postman_id":"7bfa41bd-c743-4377-ab83-ec31bb5bc36c"},{"name":"Update Billing","event":[{"listen":"test","script":{"id":"4293cf63-870c-4dde-bc6e-2167dbf7343c","exec":[""],"type":"text/javascript"}}],"id":"f9fad82c-f8cf-43a8-aa33-4107f76b6a33","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"billingCreditCard\": {\n        \"cardType\": \"MASTERCARD\",\n        \"cardNumber\": \"1234123412341234\",\n        \"cardholderFirstName\": \"JANE\",\n        \"cardholderLastName\": \"DOE\",\n        \"expirationMonth\": 11,\n        \"expirationYear\": 2022,\n        \"address\": {\n            \"streetOne\": \"101 Street\",\n            \"streetTwo\": \"Suite A\",\n            \"city\": \"Chandler\",\n            \"state\": \"AZ\",\n            \"zipCode\": \"85224\",\n            \"country\": \"US\"\n        },\n        \"processingOption\": \"CHARGE_ALTERNATE\",\n        \"chargeAlternateGuideline\": \"REQUIRE_ALTERNATE_CARD\",\n        \"chargeAlternatePopulateOption\": \"POPULATE_WITH_CLIENT\"\n    },\n    \"invoiceOptions\": {\n        \"billingCycle\": \"Fast Cycle\",\n        \"invoiceTerms\": \"Good Terms\",\n        \"taxable\": \"Harsh\",\n        \"salesRep\": \"Bob Smith\",\n        \"exportClass\": \"Slow Class\",\n        \"exportTerms\": \"My Terms\",\n        \"purchaseOrderNumber\": \"10\",\n        \"billingInvoiceMethod\": \"PACKAGE\",\n        \"invoiceSortOrder\": \"BY_APPLICANT_SSN\",\n        \"combineInvoices\": false,\n        \"oneInvoicePerReport\": false,\n        \"emailCopyToRequestor\": false,\n        \"autoEmailInvoice\": false,\n        \"sendInvoiceAsAttachment\": false\n    },\n    \"billingContactName\": \"Contact Sammy\",\n    \"billingContactPhone\": \"(555) 555-4553\",\n    \"billingContactPhoneExtension\": null,\n    \"billingEmail\": \"success@simulator.amazonses.com\"\n}","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients/{{client-guid}}/billing","description":"<p><strong>Client API</strong></p>\n<p>Update client billing.</p>\n<p>See <strong>Create Billing</strong> for field descriptions.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}","billing"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"2367acf3-a83d-455f-aebd-6d605a571b95","name":"Update Billing","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"billingCreditCard\": {\n        \"cardType\": \"MASTERCARD\",\n        \"cardNumber\": \"1234123412341234\",\n        \"cardholderFirstName\": \"JANE\",\n        \"cardholderLastName\": \"DOE\",\n        \"expirationMonth\": 11,\n        \"expirationYear\": 2022,\n        \"address\": {\n            \"streetOne\": \"101 Street\",\n            \"streetTwo\": \"Suite A\",\n            \"city\": \"Chandler\",\n            \"state\": \"AZ\",\n            \"zipCode\": \"85224\",\n            \"country\": \"US\"\n        },\n        \"processingOption\": \"CHARGE_ALTERNATE\",\n        \"chargeAlternateGuideline\": \"REQUIRE_ALTERNATE_CARD\",\n        \"chargeAlternatePopulateOption\": \"POPULATE_WITH_CLIENT\"\n    },\n    \"invoiceOptions\": {\n        \"billingCycle\": \"Fast Cycle\",\n        \"invoiceTerms\": \"Good Terms\",\n        \"taxable\": \"Harsh\",\n        \"salesRep\": \"Bob Smith\",\n        \"exportClass\": \"Slow Class\",\n        \"exportTerms\": \"My Terms\",\n        \"purchaseOrderNumber\": \"10\",\n        \"billingInvoiceMethod\": \"PACKAGE\",\n        \"invoiceSortOrder\": \"BY_APPLICANT_SSN\",\n        \"combineInvoices\": false,\n        \"oneInvoicePerReport\": false,\n        \"emailCopyToRequestor\": false,\n        \"autoEmailInvoice\": false,\n        \"sendInvoiceAsAttachment\": false\n    },\n    \"billingContactName\": \"Contact Sammy\",\n    \"billingContactPhone\": \"(555) 555-4553\",\n    \"billingContactPhoneExtension\": null,\n    \"billingEmail\": \"success@simulator.amazonses.com\"\n}","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients/{{client-guid}}/billing"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"billingCreditCard\": {\n        \"cardType\": \"MASTERCARD\",\n        \"cardNumber\": \"XXXXXXXXXXXX1234\",\n        \"cardholderFirstName\": \"JANE\",\n        \"cardholderLastName\": \"DOE\",\n        \"expirationMonth\": 11,\n        \"expirationYear\": 2022,\n        \"address\": {\n            \"streetOne\": \"101 Street\",\n            \"streetTwo\": \"Suite A\",\n            \"city\": \"Chandler\",\n            \"state\": \"AZ\",\n            \"zipCode\": \"85224\",\n            \"country\": \"US\"\n        },\n        \"processingOption\": \"CHARGE_ALTERNATE\",\n        \"chargeAlternateGuideline\": \"REQUIRE_ALTERNATE_CARD\",\n        \"chargeAlternatePopulateOption\": \"POPULATE_WITH_CLIENT\"\n    },\n    \"invoiceOptions\": {\n        \"billingCycle\": \"Fast Cycle\",\n        \"invoiceTerms\": \"Good Terms\",\n        \"taxable\": \"Harsh\",\n        \"salesRep\": \"Bob Smith\",\n        \"exportClass\": \"Slow Class\",\n        \"exportTerms\": \"My Terms\",\n        \"purchaseOrderNumber\": \"10\",\n        \"billingInvoiceMethod\": \"PACKAGE\",\n        \"invoiceSortOrder\": \"BY_APPLICANT_SSN\",\n        \"combineInvoices\": false,\n        \"oneInvoicePerReport\": false,\n        \"emailCopyToRequestor\": false,\n        \"autoEmailInvoice\": false,\n        \"sendInvoiceAsAttachment\": false\n    },\n    \"billingContactName\": \"Contact Sammy\",\n    \"billingContactPhone\": \"(555) 555-4553\",\n    \"billingEmail\": \"success@simulator.amazonses.com\"\n}"}],"_postman_id":"f9fad82c-f8cf-43a8-aa33-4107f76b6a33"},{"name":"Delete Credit Card","event":[{"listen":"test","script":{"id":"69095025-e348-4655-b1ff-898595edda4e","exec":[""],"type":"text/javascript"}}],"id":"3e636fde-8da7-4634-a22d-8f5a8802dea5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/billing/creditcard","description":"<p><strong>Client API</strong></p>\n<p>Delete the client billing credit card.  A client can only register one credit card.  To change cards, you must first delete the existing credit card.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}","billing","creditcard"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"3e636fde-8da7-4634-a22d-8f5a8802dea5"}],"id":"b68390fe-4705-4d19-850c-6acf5d59fb38","description":"<p>Endpoints allowing you to update client billing.</p>\n","_postman_id":"b68390fe-4705-4d19-850c-6acf5d59fb38","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}}},{"name":"Preferences","item":[{"name":"General Preferences","event":[{"listen":"test","script":{"id":"ace40a0b-8819-4bd7-87ab-bc894a151f0d","exec":[""],"type":"text/javascript"}}],"id":"534655a0-c77e-4d7f-a1bb-e3ccf3f959e2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/preferences/general","description":"<p><strong>Client API</strong></p>\n<p>Retrieve information about client general preferences.</p>\n<p>See <strong>Update General Preferences</strong> for field descriptions.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}","preferences","general"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"6055df11-0b8f-4709-a97b-59c91b5916b4","name":"General Preferences","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{jwt-token}}"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/preferences/general"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"maskSSN\": true,\n    \"maskYearOfBirth\": true,\n    \"maskDriversLicense\": true,\n    \"hideReportsOnCompletedListViewTiming\": \"AFTER_PRINTS\",\n    \"allowTextingForQuickAppQuickView\": false,\n    \"serviceLevelAgreementHours\": 6\n}"}],"_postman_id":"534655a0-c77e-4d7f-a1bb-e3ccf3f959e2"},{"name":"Update General Preferences","event":[{"listen":"test","script":{"id":"73311b7b-2dcc-48db-bcee-662986cdad97","exec":[""],"type":"text/javascript"}}],"id":"45ba9d3e-1656-44c6-b595-0bc57e221898","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"maskSSN\": true,\n    \"maskYearOfBirth\": true,\n    \"maskDriversLicense\": true,\n    \"hideReportsOnCompletedListViewTiming\": \"AFTER_PRINTS\",\n    \"allowTextingForQuickAppQuickView\": false,\n    \"serviceLevelAgreementHours\": 6\n}","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients/{{client-guid}}/preferences/general","description":"<p><strong>Client API</strong></p>\n<p>Update client general preferences.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>maskSSN</strong> <em>boolean</em></td>\n<td>Set to true to mask social security numbers in xxx-xx-5555 format.  Defaults to true.</td>\n</tr>\n<tr>\n<td><strong>maskYearOfBirth</strong> <em>boolean</em></td>\n<td>Set to true to mask the year of birth.  Defaults to true.</td>\n</tr>\n<tr>\n<td><strong>maskDriversLicense</strong> <em>boolean</em></td>\n<td>Set to true to mask driver's license.  Defaults to true.</td>\n</tr>\n<tr>\n<td><strong>hideReportsOnCompletedListViewTiming</strong> <em>string</em></td>\n<td>Users can hide reports on the completed report list.  Value values are <em>AFTER_PRINTS</em> and <em>AFTER_VIEWS</em>.  The report will be hidden either after the client user views or prints the report.</td>\n</tr>\n<tr>\n<td><strong>allowTextingForQuickappQuickView</strong> <em>boolean</em></td>\n<td>Set to true to allow texting for QuickApp and QuickView.  Defaults to false.</td>\n</tr>\n<tr>\n<td><strong>serviceLevelAgreementHours</strong> <em>integer</em></td>\n<td>Service Level Agreement (SLA) is for the Workload Manager.  Set this when the client needs a different SLA time then the value set at the CRA level.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}","preferences","general"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"217fb5f3-d99a-44bb-8b84-543c7c6e9cc7","name":"Update General Preferences","originalRequest":{"method":"PUT","header":[{"key":"Authorization","type":"text","value":"Bearer {{jwt-token}}"}],"body":{"mode":"raw","raw":"{\n    \"maskSSN\": true,\n    \"maskYearOfBirth\": true,\n    \"maskDriversLicense\": true,\n    \"hideReportsOnCompletedListViewTiming\": \"AFTER_PRINTS\",\n    \"allowTextingForQuickAppQuickView\": false,\n    \"serviceLevelAgreementHours\": 6\n}","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients/{{client-guid}}/preferences/general"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"maskSSN\": true,\n    \"maskYearOfBirth\": true,\n    \"maskDriversLicense\": true,\n    \"hideReportsOnCompletedListViewTiming\": \"AFTER_PRINTS\",\n    \"allowTextingForQuickAppQuickView\": false,\n    \"serviceLevelAgreementHours\": 6\n}"}],"_postman_id":"45ba9d3e-1656-44c6-b595-0bc57e221898"},{"name":"Order Preferences","event":[{"listen":"test","script":{"id":"ea61f6e6-4d6b-449e-8894-f5c32db35d02","exec":[""],"type":"text/javascript"}}],"id":"c66ac24b-01cf-44ac-8d30-2d9f6623c92f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/preferences/order","description":"<p><strong>Client API</strong></p>\n<p>Retrieve information about client order preferences.</p>\n<p>See <strong>Update Order Preferences</strong> for field descriptions.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}","preferences","order"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"5a132e14-fad7-4094-889e-600eee5fa5c9","name":"Order Preferences","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{jwt-token}}"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/preferences/order"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"sendCompletedEmailTiming\": \"UPON_COMPLETION_OF_REPORT\",\n    \"sendCompletedEmailToRequestor\": false,\n    \"notifyIfFlagsArePresent\": false,\n    \"notifyIfFlagsAreNotPresent\": false,\n    \"sendCompletedToEmail\": \"success@simulator.amazonses.com\",\n    \"notifyWhenFlagsArePresentEmail\": \"success@simulator.amazonses.com\",\n    \"notifyWhenFlagsAreNotPresentEmail\": \"success@simulator.amazonses.com\",\n    \"allowClientToAddSearchTypes\": false,\n    \"allowClientToAddSearches\": false,\n    \"automaticallyFlagSearches\": false,\n    \"allowAuthorizationFormUpload\": false,\n    \"requireAuthorizationFormUpload\": false,\n    \"enableBatchOrdering\": false\n}"}],"_postman_id":"c66ac24b-01cf-44ac-8d30-2d9f6623c92f"},{"name":"Update Order Preferences","event":[{"listen":"test","script":{"id":"e343bee7-576e-4d84-a727-ccaa8099bc55","exec":[""],"type":"text/javascript"}}],"id":"f610f0c5-c51a-41a2-9fdd-318dd74bd9ee","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"sendCompletedEmailTiming\": \"UPON_COMPLETION_OF_REPORT\",\n    \"sendCompletedEmailToRequestor\": false,\n    \"notifyIfFlagsArePresent\": false,\n    \"notifyIfFlagsAreNotPresent\": false,\n    \"sendCompletedToEmail\": \"success@simulator.amazonses.com\",\n    \"notifyWhenFlagsArePresentEmail\": \"success@simulator.amazonses.com\",\n    \"notifyWhenFlagsAreNotPresentEmail\": \"success@simulator.amazonses.com\",\n    \"allowClientToAddSearchTypes\": false,\n    \"allowClientToAddSearches\": false,\n    \"automaticallyFlagSearches\": false,\n    \"allowAuthorizationFormUpload\": false,\n    \"requireAuthorizationFormUpload\": false,\n    \"enableBatchOrdering\": false\n}","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients/{{client-guid}}/preferences/order","description":"<p><strong>Client API</strong></p>\n<p>Update client order preferences.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>sendCompletedEmailTiming</strong> <em>string</em></td>\n<td>Determine if the emaill should be sent when the report is completed or when the search is completed.  Valid values are <em>UPON_COMPLETION_OF_REPORT</em> and <em>UPON_COMPLETION_OF_SEARCH</em>.</td>\n</tr>\n<tr>\n<td><strong>sendCompletedEmailToRequestor</strong> <em>boolean</em></td>\n<td>Set to true to send an email to the requestor when the order is placed or complated.  Defaults to false.</td>\n</tr>\n<tr>\n<td><strong>notifyIfFlagsArePresent</strong> <em>boolean</em></td>\n<td>Set to true to notify the requestor if flags are present.  Defaults to false.</td>\n</tr>\n<tr>\n<td><strong>notifyIfFlagsAreNotPresent</strong> <em>boolean</em></td>\n<td>Set to true to notify the requestor when flags are not present.  Defaults to false.</td>\n</tr>\n<tr>\n<td><strong>sendCompletedToEmail</strong> <em>string</em></td>\n<td>The email address to use when sending a completed email notification.  This needs to be a valid email format.</td>\n</tr>\n<tr>\n<td><strong>notifyWhenFlagsArePresentEmail</strong> <em>boolean</em></td>\n<td>The email address to use when notifying the requestor when flags are present. This needs to be a valid email format.</td>\n</tr>\n<tr>\n<td><strong>notifyWhenFlagsAreNotPresentEmail</strong> <em>boolean</em></td>\n<td>The email address to use when notifying the requestor when flats are not present. This needs to be a valid email format.</td>\n</tr>\n<tr>\n<td><strong>allowClientToAddSearchTypes</strong> <em>boolean</em></td>\n<td>Set to true to allow client to add new search types after an order is placed.  (Add to Order).  Defaults to false.</td>\n</tr>\n<tr>\n<td><strong>allowClientToAddSearches</strong> <em>boolean</em></td>\n<td>Set to true to allow client to add more of the same searches after an order is placed.</td>\n</tr>\n<tr>\n<td><strong>automaticallyFlagSearches</strong> <em>boolean</em></td>\n<td>When set to true, searches with records found will automatically be flagged.  Not all search types can be automatically flagged.  Defaults to false.</td>\n</tr>\n<tr>\n<td><strong>allowAuthorizationFormUpload</strong> <em>boolean</em></td>\n<td>Set to true to allow a client to upload the authorization form.  Defaults to false.</td>\n</tr>\n<tr>\n<td><strong>requireAuthorizationFormUpload</strong> <em>boolean</em></td>\n<td>Set to true to require a client to upload the authorization form.  Defaults too false.</td>\n</tr>\n<tr>\n<td><strong>enableBatchOrdering</strong> <em>boolean</em></td>\n<td>Set to true to allow batch ordering.  Batch ordering is a fast and easy way for a client to upload multiple applicants' information and process instantly.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}","preferences","order"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"1ff69716-e290-4ba2-81d7-e82bdf34f64c","name":"Update Order Preferences","originalRequest":{"method":"PUT","header":[{"key":"Authorization","type":"text","value":"Bearer {{jwt-token}}"}],"body":{"mode":"raw","raw":"{\n    \"sendCompletedEmailTiming\": \"UPON_COMPLETION_OF_REPORT\",\n    \"sendCompletedEmailToRequestor\": false,\n    \"notifyIfFlagsArePresent\": false,\n    \"notifyIfFlagsAreNotPresent\": false,\n    \"sendCompletedToEmail\": \"success@simulator.amazonses.com\",\n    \"notifyWhenFlagsArePresentEmail\": \"success@simulator.amazonses.com\",\n    \"notifyWhenFlagsAreNotPresentEmail\": \"success@simulator.amazonses.com\",\n    \"allowClientToAddSearchTypes\": false,\n    \"allowClientToAddSearches\": false,\n    \"automaticallyFlagSearches\": false,\n    \"allowAuthorizationFormUpload\": false,\n    \"requireAuthorizationFormUpload\": false,\n    \"enableBatchOrdering\": false\n}","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients/{{client-guid}}/preferences/order"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"sendCompletedEmailTiming\": \"UPON_COMPLETION_OF_REPORT\",\n    \"sendCompletedEmailToRequestor\": false,\n    \"notifyIfFlagsArePresent\": false,\n    \"notifyIfFlagsAreNotPresent\": false,\n    \"sendCompletedToEmail\": \"success@simulator.amazonses.com\",\n    \"notifyWhenFlagsArePresentEmail\": \"success@simulator.amazonses.com\",\n    \"notifyWhenFlagsAreNotPresentEmail\": \"success@simulator.amazonses.com\",\n    \"allowClientToAddSearchTypes\": false,\n    \"allowClientToAddSearches\": false,\n    \"automaticallyFlagSearches\": false,\n    \"allowAuthorizationFormUpload\": false,\n    \"requireAuthorizationFormUpload\": false,\n    \"enableBatchOrdering\": false\n}"}],"_postman_id":"f610f0c5-c51a-41a2-9fdd-318dd74bd9ee"},{"name":"Pre-Search Preferences","event":[{"listen":"test","script":{"id":"843fbfa7-e3ff-46dc-b44d-c50b23f0f259","exec":[""],"type":"text/javascript"}}],"id":"c8fe43f1-0006-403d-b367-25773317d60c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/preferences/presearch","description":"<p><strong>Client API</strong></p>\n<p>Retrieve information about client pre-search preferences.</p>\n<p>See <strong>Update Pre-Search Preferences</strong> for field descriptions.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}","preferences","presearch"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"d1e39b5e-1bc3-443d-882d-3b6fd5988743","name":"Pre-Search Preferences","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{jwt-token}}"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/preferences/presearch"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"preSearchForDuplicateOrderDays\": 365,\n    \"matchOnSSN\": false,\n    \"matchOnEmail\": false,\n    \"matchOnName\": false,\n    \"resultsIncludeOrdersPlacedBySiblings\": false,\n    \"automaticallyRunOnNewOrders\": false,\n    \"doNotPreSearchDuringXMLOrder\": false,\n    \"doNotPreSearchDuringBatchOrder\": false,\n    \"resultMatchSpecifiedCriteria\": \"ANY\",\n    \"showMatchesOnReportResults\": true\n}"}],"_postman_id":"c8fe43f1-0006-403d-b367-25773317d60c"},{"name":"Update Pre-Search Preferences","event":[{"listen":"test","script":{"id":"22863307-41ed-4ee9-a5ff-4b43c2b9c26d","exec":[""],"type":"text/javascript"}}],"id":"d95816ef-5f47-4c3d-89eb-cebaac59c60e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"preSearchForDuplicateOrderDays\": 365,\n    \"matchOnSSN\": false,\n    \"matchOnEmail\": false,\n    \"matchOnName\": false,\n    \"resultsIncludeOrdersPlacedBySiblings\": false,\n    \"automaticallyRunOnNewOrders\": false,\n    \"doNotPreSearchDuringXMLOrder\": false,\n    \"doNotPreSearchDuringBatchOrder\": false,\n    \"resultMatchSpecifiedCriteria\": \"ANY\",\n    \"showMatchesOnReportResults\": true\n}","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients/{{client-guid}}/preferences/presearch","description":"<p><strong>Client API</strong></p>\n<p>Update client pre-search preferences.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>preSearchForDuplicateOrderDays</strong> <em>integer</em></td>\n<td>Set how far back the pre-search will go. Valid values are 30, 60, 90, 120, 180 and 365.</td>\n</tr>\n<tr>\n<td><strong>matchOnSSN</strong> <em>boolean</em></td>\n<td>Set to true to match based on social security number. Defaults to true.</td>\n</tr>\n<tr>\n<td><strong>matchOnEmail</strong> <em>boolean</em></td>\n<td>Set to true to match based on email. Defaults to true.</td>\n</tr>\n<tr>\n<td><strong>matchOnName</strong> <em>boolean</em></td>\n<td>Set to true to match based on name. Defaults to true.</td>\n</tr>\n<tr>\n<td><strong>resultsIncludeOrdersPlacedBySiblings</strong> <em>boolean</em></td>\n<td>If there is a parent/child relationship and a user is at the parent corporate level and places an order, it will select the current location and any of the child client locations underneat it.</td>\n</tr>\n<tr>\n<td><strong>automaticallyRunOnNewOrders</strong> <em>boolean</em></td>\n<td>Set to true to automatically run pre-search on new orders. Defaults to false.</td>\n</tr>\n<tr>\n<td><strong>doNotPreSearchDuringXMLOrder</strong> <em>boolean</em></td>\n<td>Set to true to prevent pre-search during XML or TazAPI order processing. Defaults to false.</td>\n</tr>\n<tr>\n<td><strong>doNotPreSearchDuringBatchOrder</strong> <em>boolean</em></td>\n<td>Set to true to prevent pre-search during batch ordering. Defaults to false.</td>\n</tr>\n<tr>\n<td><strong>resultMatchSpecifiedCriteria</strong> <em>string</em></td>\n<td>Should results match all or any of the specified criteria. Valid values are <em>ANY</em> and <em>ALL</em>.</td>\n</tr>\n<tr>\n<td><strong>showMatchesOnReportResults</strong> <em>boolean</em></td>\n<td>Set to true to show matches on the report results page.  Defaults to false.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}","preferences","presearch"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"83771902-2ee1-4e95-a942-d6a469bc0325","name":"Update Pre-Search Preferences","originalRequest":{"method":"PUT","header":[{"key":"Authorization","type":"text","value":"Bearer {{jwt-token}}"}],"body":{"mode":"raw","raw":"{\n    \"preSearchForDuplicateOrderDays\": 365,\n    \"matchOnSSN\": false,\n    \"matchOnEmail\": false,\n    \"matchOnName\": false,\n    \"resultsIncludeOrdersPlacedBySiblings\": false,\n    \"automaticallyRunOnNewOrders\": false,\n    \"doNotPreSearchDuringXMLOrder\": false,\n    \"doNotPreSearchDuringBatchOrder\": false,\n    \"resultMatchSpecifiedCriteria\": \"ANY\",\n    \"showMatchesOnReportResults\": true\n}","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients/{{client-guid}}/preferences/presearch"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"preSearchForDuplicateOrderDays\": 365,\n    \"matchOnSSN\": false,\n    \"matchOnEmail\": false,\n    \"matchOnName\": false,\n    \"resultsIncludeOrdersPlacedBySiblings\": false,\n    \"automaticallyRunOnNewOrders\": false,\n    \"doNotPreSearchDuringXMLOrder\": false,\n    \"doNotPreSearchDuringBatchOrder\": false,\n    \"resultMatchSpecifiedCriteria\": \"ANY\",\n    \"showMatchesOnReportResults\": true\n}"}],"_postman_id":"d95816ef-5f47-4c3d-89eb-cebaac59c60e"},{"name":"Report Decision Tool","event":[{"listen":"test","script":{"id":"51205894-efff-4909-9c20-38497f11be2c","exec":[""],"type":"text/javascript"}}],"id":"831d91ec-b936-4e6b-904f-aa64c2c56190","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/preferences/reporttool","description":"<p><strong>Client API</strong></p>\n<p>Retrieve information about client report decision tool preferences.</p>\n<p>See <strong>Update Report Decision Tool</strong> for field descriptions.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}","preferences","reporttool"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"e7e3d95c-ed5d-48d9-bb62-2d3e524055d5","name":"Report Decision Tool","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{jwt-token}}"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/preferences/reporttool"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"enableReportDecisionTool\": true,\n    \"applyReportDecisionOptionsToChildren\": true,\n    \"reportDecisionToolStyle\": \"GRAPHICAL\",\n    \"includeNeedsDecisionFilterInCompletedReports\": true,\n    \"emailAllDecisionsToRequestor\": true\n}"}],"_postman_id":"831d91ec-b936-4e6b-904f-aa64c2c56190"},{"name":"Update Report Decision Tool","event":[{"listen":"test","script":{"id":"e044db4d-aa66-48e9-8136-c95f7a8654a7","exec":[""],"type":"text/javascript"}}],"id":"61913cc1-7d68-4457-9fae-2effaa25a003","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"enableReportDecisionTool\": true,\n    \"applyReportDecisionOptionsToChildren\": true,\n    \"reportDecisionToolStyle\": \"GRAPHICAL\",\n    \"includeNeedsDecisionFilterInCompletedReports\": true,\n    \"emailAllDecisionsToRequestor\": true,\n    \"reportDecisionToolEmail\": \"success@simulator.amazonses.com\"\n}","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients/{{client-guid}}/preferences/reporttool","description":"<p><strong>Client API</strong></p>\n<p>Update client report decision tool preferences.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>enableReportDecisionTool</strong> <em>boolean</em></td>\n<td>Set to true to enable the report decision tool.  Defaults to false.</td>\n</tr>\n<tr>\n<td><strong>applyReportDecisionOptionsToChildren</strong> <em>boolean</em></td>\n<td>Set to true to apply report decision tool options to child accounts in a parent/child relationship.  Defaults to false.</td>\n</tr>\n<tr>\n<td><strong>reportDecisionToolStyle</strong> <em>string</em></td>\n<td>Set which tool style the report decision tool should use.  <em>TEXTUAL</em> or <em>GRAPHICAL</em> (using colors).</td>\n</tr>\n<tr>\n<td><strong>includeNeedsDecisionFilterInCompletedReports</strong> <em>boolean</em></td>\n<td>Set to true to display the client in the completed reports section that do not have a decision set. Defaults to false.</td>\n</tr>\n<tr>\n<td><strong>emailAllDecisionsToRequestor</strong> <em>boolean</em></td>\n<td>Set to true to email all decisions to the requestor.  Defaults to false.</td>\n</tr>\n<tr>\n<td><strong>reportDecisionToolEmail</strong> <em>string</em></td>\n<td>The email address to use when sending decisions to the requestor.  This must be a valid email format.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}","preferences","reporttool"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"cdeada14-28dd-47b5-93d1-b188250f7157","name":"Update Report Decision Tool","originalRequest":{"method":"PUT","header":[{"key":"Authorization","type":"text","value":"Bearer {{jwt-token}}"}],"body":{"mode":"raw","raw":"{\n    \"enableReportDecisionTool\": true,\n    \"applyReportDecisionOptionsToChildren\": true,\n    \"reportDecisionToolStyle\": \"GRAPHICAL\",\n    \"includeNeedsDecisionFilterInCompletedReports\": true,\n    \"emailAllDecisionsToRequestor\": true,\n    \"reportDecisionToolEmail\": \"success@simulator.amazonses.com\"\n}","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients/{{client-guid}}/preferences/reporttool"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"enableReportDecisionTool\": true,\n    \"applyReportDecisionOptionsToChildren\": true,\n    \"reportDecisionToolStyle\": \"GRAPHICAL\",\n    \"includeNeedsDecisionFilterInCompletedReports\": true,\n    \"emailAllDecisionsToRequestor\": true,\n    \"reportDecisionToolEmail\": \"success@simulator.amazonses.com\"\n}"}],"_postman_id":"61913cc1-7d68-4457-9fae-2effaa25a003"},{"name":"Report Decisions","event":[{"listen":"test","script":{"id":"c37d2fd0-0974-4a74-8160-6c51360c7fe1","exec":[""],"type":"text/javascript"}}],"id":"0edae8dd-7a6c-454e-8a01-15500893b0cd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/preferences/reporttool/decisions","description":"<p><strong>CRA API</strong></p>\n<p>Get a list of the active report decisions used by a client.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}","preferences","reporttool","decisions"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"a1823535-7e30-490e-9e54-849e83404ace","name":"Report Decisions","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{jwt-token}}"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/preferences/reporttool/decisions"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"decisionGuid\": \"efa92100-goo\",\n        \"decision\": \"Approved (per client specifications)\"\n    },\n    {\n        \"decisionGuid\": \"7d116573-goo\",\n        \"decision\": \"Declined (per client specifications)\"\n    },\n    {\n        \"decisionGuid\": \"8ba2f408-goo\",\n        \"decision\": \"Review (per client specifications)\"\n    }\n]"}],"_postman_id":"0edae8dd-7a6c-454e-8a01-15500893b0cd"},{"name":"Interface Settings","event":[{"listen":"test","script":{"id":"fc3f8dc0-d37d-4bff-a0af-ed45bacf7bb9","exec":[""],"type":"text/javascript"}}],"id":"53f1c650-777c-4166-a68c-85f3d10837bf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/preferences/interfaceSettings","description":"<p><strong>Client API</strong></p>\n<p>Retrieve list of valid values for interface settings and client accounts used when updating client data provider settings.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}","preferences","interfaceSettings"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"6c6f4ce5-7243-459a-9059-bc3e8b6d45bd","name":"Interface Settings","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{jwt-token}}"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/preferences/interfaceSettings"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"providerGuid\": \"21641952-3331-11ea-acb8-7ece90654a41\",\n        \"providerName\": \"E_SCREEN\",\n        \"accountGuid\": \"217e6438-3331-11ea-acb8-7ece90654a41\",\n        \"accountName\": \"E-Screen Test\"\n    },\n    {\n        \"providerGuid\": \"216419d4-3331-11ea-acb8-7ece90654a41\",\n        \"providerName\": \"LABCORP\",\n        \"accountGuid\": \"217e6532-3331-11ea-acb8-7ece90654a41\",\n        \"accountName\": \"LabCorp Test\"\n    },\n    {\n        \"providerGuid\": \"21641b00-3331-11ea-acb8-7ece90654a41\",\n        \"providerName\": \"QUEST\",\n        \"accountGuid\": \"217e65a0-3331-11ea-acb8-7ece90654a41\",\n        \"accountName\": \"Quest Test\"\n    },\n    {\n        \"providerGuid\": \"21641b82-3331-11ea-acb8-7ece90654a41\",\n        \"providerName\": \"PEMBROOKE\",\n        \"accountGuid\": \"3b99f337-3fe5-4cdd-a3eb-f1e85c1ef6c5\",\n        \"accountName\": \"Pembrooke 1\"\n    },\n    {\n        \"providerGuid\": \"21641d30-3331-11ea-acb8-7ece90654a41\",\n        \"providerName\": \"I3SCREEN\",\n        \"accountGuid\": \"217e64ba-3331-11ea-acb8-7ece90654a41\",\n        \"accountName\": \"i3Screen Test\"\n    },\n    {\n        \"providerGuid\": \"21641d30-3331-11ea-acb8-7ece90654a41\",\n        \"providerName\": \"I3SCREEN\",\n        \"accountGuid\": \"8a1362d8-c093-4fdc-99c2-52c251559335\",\n        \"accountName\": \"I3Screen Medium Labs\"\n    }\n]"}],"_postman_id":"53f1c650-777c-4166-a68c-85f3d10837bf"},{"name":"Drug Providers","event":[{"listen":"test","script":{"id":"812fc70a-5d00-45c5-b5fb-a4dfd82648e1","exec":[""],"type":"text/javascript"}}],"id":"ebc32776-a393-4364-b998-71478902fc3b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/preferences/providers","description":"<p><strong>Client API</strong></p>\n<p>Retrieve list of valid data providers for Occupational Health searches.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}","preferences","providers"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"36ec5810-0477-4cbc-9a8e-7b96791e9f15","name":"Drug Providers","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{jwt-token}}"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/preferences/providers"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"providerGuid\": \"21641952-3331-11ea-acb8-7ece90654a41\",\n        \"providerName\": \"E_SCREEN\"\n    },\n    {\n        \"providerGuid\": \"216419d4-3331-11ea-acb8-7ece90654a41\",\n        \"providerName\": \"LABCORP\"\n    },\n    {\n        \"providerGuid\": \"21641a60-3331-11ea-acb8-7ece90654a41\",\n        \"providerName\": \"WOLFE\"\n    },\n    {\n        \"providerGuid\": \"21641b00-3331-11ea-acb8-7ece90654a41\",\n        \"providerName\": \"QUEST\"\n    },\n    {\n        \"providerGuid\": \"21641b82-3331-11ea-acb8-7ece90654a41\",\n        \"providerName\": \"PEMBROOKE\"\n    },\n    {\n        \"providerGuid\": \"21641ca4-3331-11ea-acb8-7ece90654a41\",\n        \"providerName\": \"OMEGA_LABS\"\n    },\n    {\n        \"providerGuid\": \"21641d30-3331-11ea-acb8-7ece90654a41\",\n        \"providerName\": \"I3SCREEN\"\n    },\n    {\n        \"providerGuid\": \"216465b0-3331-11ea-acb8-7ece90654a41\",\n        \"providerName\": \"DRS\"\n    },\n    {\n        \"providerGuid\": \"2164b718-3331-11ea-acb8-7ece90654a41\",\n        \"providerName\": \"LEGACY_LABS\"\n    }\n]"}],"_postman_id":"ebc32776-a393-4364-b998-71478902fc3b"},{"name":"Form I-9 Settings","event":[{"listen":"test","script":{"id":"d0e3410f-06cd-4bf7-b7d9-95f988d4776c","exec":[""],"type":"text/javascript"}}],"id":"381f1759-b445-4b98-817f-f41deeed3269","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/preferences/formI9","description":"<p><strong>Client API</strong></p>\n<p>Retrieve information about client Form I-9 Settings.</p>\n<p>See <strong>Update Form I-9 Settings</strong> for field descriptions.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}","preferences","formI9"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"033a4771-ab9e-45e0-9026-abdb024a6b58","name":"Form I-9 Settings","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{jwt-token}}"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/preferences/formI9"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"enableFormI9Compliance\": false,\n    \"clientIdentifier\": \"IBD-336\",\n    \"allowFormI9\": false,\n    \"allowI9RemoteInvitation\": true,\n    \"formI9Price\": 5.0,\n    \"allowEVerify\": true,\n    \"eVerifyPrice\": 8.0,\n    \"hideFormI9OnUtilitiesMenu\": false\n}"}],"_postman_id":"381f1759-b445-4b98-817f-f41deeed3269"},{"name":"Update Form I-9 Settings","event":[{"listen":"test","script":{"id":"8f401402-6525-4846-89f6-9d1feaaed4f4","exec":[""],"type":"text/javascript"}}],"id":"7e19caa0-41bf-43b1-800c-f4c063553886","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"enableFormI9Compliance\": false,\n    \"clientIdentifier\": \"IBD-336\",\n    \"allowFormI9\": false,\n    \"allowI9RemoteInvitation\": true,\n    \"formI9Price\": 5.0,\n    \"allowEVerify\": true,\n    \"eVerifyPrice\": 8.0,\n    \"hideFormI9OnUtilitiesMenu\": false\n}","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients/{{client-guid}}/preferences/formI9","description":"<p><strong>Client API</strong></p>\n<p>Update client Form I-9 product settings.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>enableFormI9Compliance</strong> <em>boolean</em></td>\n<td>Set to true to enable Form I-9 compliance.  Defaults to true.</td>\n</tr>\n<tr>\n<td><strong>clientIdentifier</strong> <em>string</em></td>\n<td>The client identifier.</td>\n</tr>\n<tr>\n<td><strong>allowFormI9</strong> <em>boolean</em></td>\n<td>Set to true to allow Form I-9.  Defaults to false.</td>\n</tr>\n<tr>\n<td><strong>allowI9RemoteInvitation</strong> <em>boolean</em></td>\n<td>Set to true allow Form I-9 Remove Invitation. Defaults to false.</td>\n</tr>\n<tr>\n<td><strong>formI9Price</strong> <em>double</em></td>\n<td>The price for Form I-9 and Form I-9 Remote Invitation.</td>\n</tr>\n<tr>\n<td><strong>allowEVerify</strong> <em>boolean</em></td>\n<td>Set to true to allow/enable E-Verify.  Defaults to false.</td>\n</tr>\n<tr>\n<td><strong>eVerifyPrice</strong> <em>double</em></td>\n<td>The price for E-Verify.</td>\n</tr>\n<tr>\n<td><strong>hideFormI9OnUtilitiesMenu</strong> <em>boolean</em></td>\n<td>Set to true to hide links for Form I-9 Compliance on the Utilities Menu in Instascreen.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}","preferences","formI9"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"526b7eb9-dc00-4b1b-9c1a-35629f83b671","name":"Update Form I-9 Settings","originalRequest":{"method":"PUT","header":[{"key":"Authorization","type":"text","value":"Bearer {{jwt-token}}"}],"body":{"mode":"raw","raw":"{\n    \"enableFormI9Compliance\": false,\n    \"clientIdentifier\": \"IBD-336\",\n    \"allowFormI9\": false,\n    \"allowI9RemoteInvitation\": true,\n    \"formI9Price\": 5.0,\n    \"allowEVerify\": true,\n    \"eVerifyPrice\": 8.0,\n    \"hideFormI9OnUtilitiesMenu\": false\n}","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients/{{client-guid}}/preferences/formI9"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"enableFormI9Compliance\": false,\n    \"clientIdentifier\": \"IBD-336\",\n    \"allowFormI9\": false,\n    \"allowI9RemoteInvitation\": true,\n    \"formI9Price\": 5.0,\n    \"allowEVerify\": true,\n    \"eVerifyPrice\": 8.0,\n    \"hideFormI9OnUtilitiesMenu\": false\n}"}],"_postman_id":"7e19caa0-41bf-43b1-800c-f4c063553886"},{"name":"EScreen Settings","event":[{"listen":"test","script":{"id":"87353757-d782-4f19-8ca1-513e517ee16d","exec":[""],"type":"text/javascript"}}],"id":"4bca43f7-e552-4590-94b9-c06977b71801","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/preferences/escreen","description":"<p><strong>Client API</strong></p>\n<p>Retrieve information about client EScreen product settings.</p>\n<p>See <strong>Update EScreen Settings</strong> for field descriptions.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}","preferences","escreen"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"bdbc8dd5-933c-4454-8974-d6fdc6039878","name":"EScreen Settings","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{jwt-token}}"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/preferences/escreen"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"interfaceSettingsGuid\": \"217e6438-3331-11ea-acb8-7ece90654a41\",\n    \"sendCopyOfDonorPassport\": false,\n    \"sendDonorPassportWhenOrderDispatched\": false,\n    \"sendStatusToUserGuids\": [\n        \"20f8fe8c-1911-11e9-9007-571a7e28501a\"\n    ],\n    \"copyStatusToPendingNotes\": true,\n    \"clientAccountGuid\": \"217e6438-3331-11ea-acb8-7ece90654a41\",\n    \"manualPermitted\": false,\n    \"singleSignOnPermitted\": true,\n    \"applicantInvitePermitted\": true,\n    \"sendCopyOfSchedulingEmailCC\": true,\n    \"sendCopyOfSchedulingEmailCCEmail\": \"success@simulator.amazonses.com\",\n    \"sendCopyOfSchedulingEmailCCToRequestor\": true\n}"}],"_postman_id":"4bca43f7-e552-4590-94b9-c06977b71801"},{"name":"Update EScreen Settings","event":[{"listen":"test","script":{"id":"b69141f8-9e9d-4ddb-892f-48a3451902cf","exec":[""],"type":"text/javascript","packages":{}}}],"id":"d8bdc1b6-d441-45d0-b503-cd3b9c701098","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"clientAccountGuid\": \"217e6438-3331-11ea-acb8-7ece90654a41\",\n    \"clientSubAccount\": \"account\",\n    \"manualPermitted\": false,\n    \"singleSignOnPermitted\": true,\n    \"applicantInvitePermitted\": true,\n    \"sendStatusToUserGuids\": [\"20f8fe8c-1911-11e9-9007-571a7e28501a\"],\n    \"copyStatusToPendingNotes\": true,\n    \"sendCopyOfSchedulingEmailCC\": true,\n    \"sendCopyOfSchedulingEmailCCEmail\": \"success@simulator.amazonses.com\",\n    \"sendCopyOfSchedulingEmailCCToRequestor\": true\n}","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients/{{client-guid}}/preferences/escreen","description":"<p><strong>Client API</strong></p>\n<p>Update client EScreen product settings.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>clientAccountGuid</strong> <em>uuid</em></td>\n<td>Identifier for the client account to use. See <strong>Interface Settings</strong> for valid values.</td>\n</tr>\n<tr>\n<td><strong>clientSubAccount</strong> <em>string</em></td>\n<td>The client sub-account.</td>\n</tr>\n<tr>\n<td><strong>manualPermitted</strong> <em>boolean</em></td>\n<td>Set to true to permit manual fulfillment types. Manual means the vendor is contacted for the drug screening information.</td>\n</tr>\n<tr>\n<td><strong>singleSignOnPermitted</strong> <em>boolean</em></td>\n<td>Set to true to permit single sign on fulfillment types. Single sign on means the processor is redirected to the vendor site to schedule the drug screening.</td>\n</tr>\n<tr>\n<td><strong>applicantInvitePermitted</strong> <em>boolean</em></td>\n<td>Set to true to permit applicant invite fulfillment types. Applicant invite sends an email to the applicant which directs them to the vendor siste to schedule the drug screening.</td>\n</tr>\n<tr>\n<td><strong>sendStatusToUserGuids</strong> <em>collection, string</em></td>\n<td>Collection of identifiers for the client users that will receive status messages.</td>\n</tr>\n<tr>\n<td><strong>copyStatusToPendingNotes</strong> <em>boolean</em></td>\n<td>Set to true to copy status messages from provider to the order's pending notes. Defaults to false.</td>\n</tr>\n<tr>\n<td><strong>sendCopyOfSchedulingEmailCC</strong> <em>boolean</em></td>\n<td>Set to true to send a copy of the scheduling email</td>\n</tr>\n<tr>\n<td><strong>sendCopyOfSchedulingEmailCCEmail</strong> <em>string</em></td>\n<td>Email to use when sending a copy of the scheduling email.</td>\n</tr>\n<tr>\n<td><strong>sendCopyOfSchedulingEmailCCToRequestor</strong> <em>boolean</em></td>\n<td>Set to true to send a copy of the scheduling email to the requestor.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}","preferences","escreen"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"1a1acdd2-f1f8-474d-a28d-ded7f8449155","name":"Update EScreen Settings","originalRequest":{"method":"PUT","header":[{"key":"Authorization","type":"text","value":"Bearer {{jwt-token}}"}],"body":{"mode":"raw","raw":"{\n    \"clientAccountGuid\": \"217e6438-3331-11ea-acb8-7ece90654a41\",\n    \"clientSubAccount\": \"account\",\n    \"manualPermitted\": false,\n    \"singleSignOnPermitted\": true,\n    \"applicantInvitePermitted\": true,\n    \"sendStatusToUserGuids\": [\"20f8fe8c-1911-11e9-9007-571a7e28501a\"],\n    \"copyStatusToPendingNotes\": true,\n    \"sendCopyOfSchedulingEmailCC\": true,\n    \"sendCopyOfSchedulingEmailCCEmail\": \"success@simulator.amazonses.com\",\n    \"sendCopyOfSchedulingEmailCCToRequestor\": true\n}","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients/{{client-guid}}/preferences/escreen"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"interfaceSettingsGuid\": \"217e6438-3331-11ea-acb8-7ece90654a41\",\n    \"sendStatusToUserGuids\": [\n        \"20f8fe8c-1911-11e9-9007-571a7e28501a\"\n    ],\n    \"copyStatusToPendingNotes\": true,\n    \"clientAccountGuid\": \"217e6438-3331-11ea-acb8-7ece90654a41\",\n    \"clientSubAccount\": \"account\",\n    \"manualPermitted\": false,\n    \"singleSignOnPermitted\": true,\n    \"applicantInvitePermitted\": true,\n    \"sendCopyOfSchedulingEmailCC\": true,\n    \"sendCopyOfSchedulingEmailCCEmail\": \"success@simulator.amazonses.com\",\n    \"sendCopyOfSchedulingEmailCCToRequestor\": true\n}"}],"_postman_id":"d8bdc1b6-d441-45d0-b503-cd3b9c701098"},{"name":"I3Screen Settings","event":[{"listen":"test","script":{"id":"e27ddb3f-0f22-415a-b0d7-3d712fb21bed","exec":[""],"type":"text/javascript"}}],"id":"d631e14e-27ed-4123-a158-8693eb91524e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/preferences/i3screen","description":"<p><strong>Client API</strong></p>\n<p>Retrieve information about client I3Screen product settings.</p>\n<p>See <strong>Update I3Screen Settings</strong> for field descriptions.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}","preferences","i3screen"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"5e98a795-ee06-4538-9fbe-1f3e1f42ef60","name":"I3Screen Settings","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{jwt-token}}"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/preferences/i3screen"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"interfaceSettingsGuid\": \"8a1362d8-c093-4fdc-99c2-52c251559335\",\n    \"applicantPassportInstructions\": \"Some notes\",\n    \"sendCopyOfDonorPassport\": true,\n    \"copyOfDonorPassportSendEmail\": \"success@simulator.amazonses.com\",\n    \"sendDonorPassportWhenOrderDispatched\": true,\n    \"sendStatusToUserGuids\": [\n        \"20f904cc-1911-11e9-9007-571a7e28501a\",\n        \"20f91408-1911-11e9-9007-571a7e28501a\"\n    ],\n    \"copyStatusToPendingNotes\": true,\n    \"organizationId\": \"ORG-3\",\n    \"locationCode\": \"LOC-3\"\n}"}],"_postman_id":"d631e14e-27ed-4123-a158-8693eb91524e"},{"name":"Update I3Screen Settings","event":[{"listen":"test","script":{"id":"3484c63f-0c85-47fe-af7b-676a4f3ee1ad","exec":[""],"type":"text/javascript"}}],"id":"a4fd3789-098c-4d90-9f7a-06d141e0d742","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"interfaceSettingsGuid\": \"8a1362d8-c093-4fdc-99c2-52c251559335\",\n    \"applicantPassportInstructions\": \"Some notes\",\n    \"sendCopyOfDonorPassport\": true,\n    \"copyOfDonorPassportSendEmail\": \"success@simulator.amazonses.com\",\n    \"sendDonorPassportWhenOrderDispatched\": true,\n    \"sendStatusToUserGuids\": [\n        \"20f904cc-1911-11e9-9007-571a7e28501a\",\n        \"20f91408-1911-11e9-9007-571a7e28501a\"\n    ],\n    \"copyStatusToPendingNotes\": true,\n    \"organizationId\": \"ORG-3\",\n    \"locationCode\": \"LOC-3\"\n}","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients/{{client-guid}}/preferences/i3screen","description":"<p><strong>Client API</strong></p>\n<p>Update client I3Screen product settings.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>interfaceSettingsGuid</strong> <em>uuid</em></td>\n<td>Identifier for the i3Screen interface setting.  See <strong>Interface Settings</strong> for valid values.</td>\n</tr>\n<tr>\n<td><strong>applicantPassportInstructions</strong> <em>string</em></td>\n<td>Applicant passport instructions.</td>\n</tr>\n<tr>\n<td><strong>sendCopyOfDonorPassport</strong> <em>boolean</em></td>\n<td>Set to true if the client would also like to a receive a copy of the emailed passport when it is sent. Defaults to false.</td>\n</tr>\n<tr>\n<td><strong>copyOfDonorPassPortSendEmail</strong> <em>string</em></td>\n<td>Email address to use when sending a copy of the donor passport.  Must be a valid email format.</td>\n</tr>\n<tr>\n<td><strong>sendDonorPassportWhenOrderDispatched</strong> <em>boolean</em></td>\n<td>Once the order is placed with the provider, an email containing the donor passport can be automatically emailed to the applicant.  Defaults to false.</td>\n</tr>\n<tr>\n<td><strong>sendStatusToUserGuids</strong> <em>collection, string</em></td>\n<td>Collection of identifiers for the client users that will receive status messages.</td>\n</tr>\n<tr>\n<td><strong>copyStatusToPendingNotes</strong> <em>boolean</em></td>\n<td>Set to true to copy status messages from provider to the order's pending notes.  Defaults to false.</td>\n</tr>\n<tr>\n<td><strong>organizationId</strong> <em>string</em></td>\n<td>The organization identifier.</td>\n</tr>\n<tr>\n<td><strong>locationCode</strong> <em>string</em></td>\n<td>The location code.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}","preferences","i3screen"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"327b38f5-da4e-4469-a4c6-475c060a98fd","name":"Update I3Screen Settings","originalRequest":{"method":"PUT","header":[{"key":"Authorization","type":"text","value":"Bearer {{jwt-token}}"}],"body":{"mode":"raw","raw":"{\n    \"interfaceSettingsGuid\": \"8a1362d8-c093-4fdc-99c2-52c251559335\",\n    \"applicantPassportInstructions\": \"Some notes\",\n    \"sendCopyOfDonorPassport\": true,\n    \"copyOfDonorPassportSendEmail\": \"success@simulator.amazonses.com\",\n    \"sendDonorPassportWhenOrderDispatched\": true,\n    \"sendStatusToUserGuids\": [\n        \"20f904cc-1911-11e9-9007-571a7e28501a\",\n        \"20f91408-1911-11e9-9007-571a7e28501a\"\n    ],\n    \"copyStatusToPendingNotes\": true,\n    \"organizationId\": \"ORG-3\",\n    \"locationCode\": \"LOC-3\"\n}","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients/{{client-guid}}/preferences/i3screen"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"interfaceSettingsGuid\": \"8a1362d8-c093-4fdc-99c2-52c251559335\",\n    \"applicantPassportInstructions\": \"Some notes\",\n    \"sendCopyOfDonorPassport\": true,\n    \"copyOfDonorPassportSendEmail\": \"success@simulator.amazonses.com\",\n    \"sendDonorPassportWhenOrderDispatched\": true,\n    \"sendStatusToUserGuids\": [\n        \"20f904cc-1911-11e9-9007-571a7e28501a\",\n        \"20f91408-1911-11e9-9007-571a7e28501a\"\n    ],\n    \"copyStatusToPendingNotes\": true,\n    \"organizationId\": \"ORG-3\",\n    \"locationCode\": \"LOC-3\"\n}"}],"_postman_id":"a4fd3789-098c-4d90-9f7a-06d141e0d742"},{"name":"Other Provider Settings","event":[{"listen":"test","script":{"id":"44976303-4178-4407-a405-177f2651aad2","exec":[""],"type":"text/javascript"}}],"id":"f146cebd-42b6-4bac-b6c6-2c887cf6cea5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/preferences/providers/{{drug-provider-guid}}","description":"<p><strong>Client API</strong></p>\n<p>Retrieve information about all other Occupational Health provider product settings.  </p>\n<p>See <strong>Update Other Provider Settings</strong> for field descriptions.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}","preferences","providers","{{drug-provider-guid}}"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"a18071ae-7f26-4d4c-ad07-829ed2ec80e6","name":"Other Provider Settings","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{jwt-token}}"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/preferences/providers/{{drug-provider-guid}}"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"interfaceSettingsGuid\": \"217e6532-3331-11ea-acb8-7ece90654a41\",\n    \"applicantPassportInstructions\": \"passport instructions\",\n    \"sendCopyOfDonorPassport\": true,\n    \"copyOfDonorPassportSendEmail\": \"stacy.chang@tazworks.com\",\n    \"sendDonorPassportWhenOrderDispatched\": false,\n    \"sendStatusToUserGuids\": [\n        \"20f8fe8c-1911-11e9-9007-571a7e28501a\"\n    ],\n    \"copyStatusToPendingNotes\": false,\n    \"providerGuid\": \"216419d4-3331-11ea-acb8-7ece90654a41\",\n    \"providerName\": \"LABCORP\"\n}"}],"_postman_id":"f146cebd-42b6-4bac-b6c6-2c887cf6cea5"},{"name":"Update Other Provider Settings","event":[{"listen":"test","script":{"id":"95cb3533-34ed-47c4-9ebc-f97fa3e070a6","exec":[""],"type":"text/javascript"}}],"id":"5e604ba9-1f0a-4539-bda9-2e1aa6c5c2b0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"interfaceSettingsGuid\": \"217e6532-3331-11ea-acb8-7ece90654a41\",\n    \"applicantPassportInstructions\": \"passport instructions\",\n    \"sendCopyOfDonorPassport\": true,\n    \"copyOfDonorPassportSendEmail\": null,\n    \"sendDonorPassportWhenOrderDispatched\": true,\n    \"sendStatusToUserGuids\": [\"e8d143bb-2666-464e-996f-f73ca97bb502\"],\n    \"copyStatusToPendingNotes\": true\n}","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients/{{client-guid}}/preferences/providers/{{drug-provider-guid}}","description":"<p><strong>Client API</strong></p>\n<p>Update other Occupational Health data provider product settings.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>interfaceSettingsGuid</strong> <em>uuid</em></td>\n<td>Identifier for the interface setting.  See <strong>Interface Settings</strong> for valid values.</td>\n</tr>\n<tr>\n<td><strong>applicantPassportInstructions</strong> <em>string</em></td>\n<td>Applicant passport instructions.</td>\n</tr>\n<tr>\n<td><strong>sendCopyOfDonorPassport</strong> <em>boolean</em></td>\n<td>Set to true if the client would also like to a receive a copy of the emailed passport when it is sent. Defaults to false.</td>\n</tr>\n<tr>\n<td><strong>copyOfDonorPassPortSendEmail</strong> <em>string</em></td>\n<td>Email address to use when sending a copy of the donor passport.  Must be a valid email format.</td>\n</tr>\n<tr>\n<td><strong>sendDonorPassportWhenOrderDispatched</strong> <em>boolean</em></td>\n<td>Once the order is placed with the provider, an email containing the donor passport can be automatically emailed to the applicant.  Defaults to false.</td>\n</tr>\n<tr>\n<td><strong>sendStatusToUserGuids</strong> <em>collection, string</em></td>\n<td>Collection of identifiers for the client users that will receive status messages.</td>\n</tr>\n<tr>\n<td><strong>copyStatusToPendingNotes</strong> <em>boolean</em></td>\n<td>Set to true to copy status messages from provider to the order's pending notes.  Defaults to false.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}","preferences","providers","{{drug-provider-guid}}"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"f2a660c2-012b-4c0f-ba59-5c7f7050c12b","name":"Update Other Provider Settings","originalRequest":{"method":"PUT","header":[{"key":"Authorization","type":"text","value":"Bearer {{jwt-token}}"}],"body":{"mode":"raw","raw":"{\n    \"interfaceSettingsGuid\": \"217e6532-3331-11ea-acb8-7ece90654a41\",\n    \"applicantPassportInstructions\": \"passport instructions\",\n    \"sendCopyOfDonorPassport\": true,\n    \"copyOfDonorPassportSendEmail\": null,\n    \"sendDonorPassportWhenOrderDispatched\": true,\n    \"sendStatusToUserGuids\": [\"e8d143bb-2666-464e-996f-f73ca97bb502\"],\n    \"copyStatusToPendingNotes\": true\n}","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients/{{client-guid}}/preferences/providers/{{drug-provider-guid}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"interfaceSettingsGuid\": \"217e6532-3331-11ea-acb8-7ece90654a41\",\n    \"applicantPassportInstructions\": \"passport instructions\",\n    \"sendCopyOfDonorPassport\": true,\n    \"sendDonorPassportWhenOrderDispatched\": true,\n    \"sendStatusToUserGuids\": [\"e8d143bb-2666-464e-996f-f73ca97bb502\"],\n    \"copyStatusToPendingNotes\": true\n}"}],"_postman_id":"5e604ba9-1f0a-4539-bda9-2e1aa6c5c2b0"},{"name":"Quest Settings","event":[{"listen":"test","script":{"id":"36ee51eb-0a9e-44e1-b209-5b2db008b3ae","exec":[""],"type":"text/javascript"}}],"id":"3b16a1c4-3332-4f80-a005-ed50bdb1b569","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/preferences/quest","description":"<p><strong>Client API</strong></p>\n<p>Retrieve information about client Quest product settings.</p>\n<p>See <strong>Update Quest Settings</strong> for field descriptions.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}","preferences","quest"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"b45f5579-d934-49a8-90d0-2185d4087d4f","name":"Quest Settings","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{jwt-token}}"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/preferences/quest"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"interfaceSettingsGuid\": \"217e65a0-3331-11ea-acb8-7ece90654a41\",\n    \"applicantPassportInstructions\": \"Turn left at the stop sign.\",\n    \"sendCopyOfDonorPassport\": true,\n    \"copyOfDonorPassportSendEmail\": \"success@simulator.amazonses.com\",\n    \"sendDonorPassportWhenOrderDispatched\": true,\n    \"sendStatusToUserGuids\": [\"e8d143bb-2666-464e-996f-f73ca97bb502\"],\n    \"copyStatusToPendingNotes\": true,\n    \"includePatientServiceCenters\": true,\n    \"preferredNetwork\": true,\n    \"preferredFee\": 17.0,\n    \"thirdParty\": true\n}"}],"_postman_id":"3b16a1c4-3332-4f80-a005-ed50bdb1b569"},{"name":"Update Quest Settings","event":[{"listen":"test","script":{"id":"c4ddd5b8-9bd3-4886-b173-e4c0bfd3da19","exec":[""],"type":"text/javascript"}}],"id":"0c1148f9-42cc-42f5-a484-ecb99a05b779","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"interfaceSettingsGuid\": \"217e65a0-3331-11ea-acb8-7ece90654a41\",\n    \"applicantPassportInstructions\": \"Turn left at the stop sign.\",\n    \"sendCopyOfDonorPassport\": true,\n    \"copyOfDonorPassportSendEmail\": \"success@simulator.amazonses.com\",\n    \"sendDonorPassportWhenOrderDispatched\": true,\n    \"sendStatusToUserGuids\": [\"e8d143bb-2666-464e-996f-f73ca97bb502\"],\n    \"copyStatusToPendingNotes\": true,\n    \"includePatientServiceCenters\": true,\n    \"preferredNetwork\": true,\n    \"preferredFee\": 17.0,\n    \"thirdParty\": true\n}","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients/{{client-guid}}/preferences/quest","description":"<p><strong>Client API</strong></p>\n<p>Update client Quest product settings.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>interfaceSettingsGuid</strong> <em>uuid</em></td>\n<td>Identifier for the Quest interface setting.  See <strong>Interface Settings</strong> for valid values.</td>\n</tr>\n<tr>\n<td><strong>applicantPassportInstructions</strong> <em>string</em></td>\n<td>Applicant passport instructions.</td>\n</tr>\n<tr>\n<td><strong>sendCopyOfDonorPassport</strong> <em>boolean</em></td>\n<td>Set to true if the client would also like to a receive a copy of the emailed passport when it is sent. Defaults to false.</td>\n</tr>\n<tr>\n<td><strong>copyOfDonorPassPortSendEmail</strong> <em>string</em></td>\n<td>Email address to use when sending a copy of the donor passport.  Must be a valid email format.</td>\n</tr>\n<tr>\n<td><strong>sendDonorPassportWhenOrderDispatched</strong> <em>boolean</em></td>\n<td>Once the order is placed with the provider, an email containing the donor passport can be automatically emailed to the applicant.  Defaults to false.</td>\n</tr>\n<tr>\n<td><strong>sendStatusToUserGuids</strong> <em>collection, string</em></td>\n<td>Collection of identifiers for the client users that will receive status messages.</td>\n</tr>\n<tr>\n<td><strong>copyStatusToPendingNotes</strong> <em>boolean</em></td>\n<td>Set to true to copy status messages from provider to the order's pending notes.  Defaults to false.</td>\n</tr>\n<tr>\n<td><strong>includePatientServiceCenters</strong> <em>boolean</em></td>\n<td>Set to true to include patient service centers.  Defaults to false.</td>\n</tr>\n<tr>\n<td><strong>preferredNetwork</strong> <em>boolean</em></td>\n<td>Set to true if this is a preferred network.  Defaults to false.</td>\n</tr>\n<tr>\n<td><strong>preferredFee</strong> <em>double</em></td>\n<td>The additional fee for the preferred network.</td>\n</tr>\n<tr>\n<td><strong>thirdParty</strong> <em>boolean</em></td>\n<td>Set to true if this is a third party.  Defaults to false.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}","preferences","quest"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"1cfdde76-34e4-4684-a91d-30916943e2d8","name":"Update Quest Settings","originalRequest":{"method":"PUT","header":[{"key":"Authorization","type":"text","value":"Bearer {{jwt-token}}"}],"body":{"mode":"raw","raw":"{\n    \"interfaceSettingsGuid\": \"217e65a0-3331-11ea-acb8-7ece90654a41\",\n    \"applicantPassportInstructions\": \"Turn left at the stop sign.\",\n    \"sendCopyOfDonorPassport\": true,\n    \"copyOfDonorPassportSendEmail\": \"success@simulator.amazonses.com\",\n    \"sendDonorPassportWhenOrderDispatched\": true,\n    \"sendStatusToUserGuids\": [\"e8d143bb-2666-464e-996f-f73ca97bb502\"],\n    \"copyStatusToPendingNotes\": true,\n    \"includePatientServiceCenters\": true,\n    \"preferredNetwork\": true,\n    \"preferredFee\": 17.0,\n    \"thirdParty\": true\n}","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients/{{client-guid}}/preferences/quest"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"interfaceSettingsGuid\": \"217e65a0-3331-11ea-acb8-7ece90654a41\",\n    \"applicantPassportInstructions\": \"Turn left at the stop sign.\",\n    \"sendCopyOfDonorPassport\": true,\n    \"copyOfDonorPassportSendEmail\": \"success@simulator.amazonses.com\",\n    \"sendDonorPassportWhenOrderDispatched\": true,\n    \"sendStatusToUserGuids\": [\"e8d143bb-2666-464e-996f-f73ca97bb502\"],\n    \"copyStatusToPendingNotes\": true,\n    \"includePatientServiceCenters\": true,\n    \"preferredNetwork\": true,\n    \"preferredFee\": 17.0,\n    \"thirdParty\": true\n}"}],"_postman_id":"0c1148f9-42cc-42f5-a484-ecb99a05b779"},{"name":"ClearMD Settings","id":"0393bdad-1fb1-4741-b60d-57bc7e031863","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/preferences/clearmd","description":"<p><strong>Client API</strong></p>\n<p>Retrieve information about client ClearMD product settings.</p>\n<p>See <strong>Update ClearMD Settings</strong> for field descriptions.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}","preferences","clearmd"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"7d42db47-65c3-48d2-8066-854dcf6e3f1e","name":"ClearMD Settings","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/preferences/clearmd"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"sendCopyOfDonorPassport\": false,\n    \"sendDonorPassportWhenOrderDispatched\": false,\n    \"sendStatusToUserGuids\": [],\n    \"copyStatusToPendingNotes\": false,\n    \"excludeThirdParty\": false,\n    \"useProviderEmailSettings\": false,\n    \"autoAddCollectionSiteFees\": false\n}"}],"_postman_id":"0393bdad-1fb1-4741-b60d-57bc7e031863"},{"name":"Update ClearMD Settings","id":"f73875d1-48d5-47c3-8c43-d110efd0c93f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/preferences/clearmd","description":"<p><strong>Client API</strong></p>\n<p>Update client ClearMD product settings.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>interfaceSettingsGuid</strong> <em>uuid</em></td>\n<td>Identifier for the ClearMD interface setting.  See <strong>Interface Settings</strong> for valid values.</td>\n</tr>\n<tr>\n<td><strong>applicantPassportInstructions</strong> <em>string</em></td>\n<td>Applicant passport instructions.</td>\n</tr>\n<tr>\n<td><strong>sendCopyOfDonorPassport</strong> <em>boolean</em></td>\n<td>Set to true if the client would also like to a receive a copy of the emailed passport when it is sent. Defaults to false.</td>\n</tr>\n<tr>\n<td><strong>copyOfDonorPassPortSendEmail</strong> <em>string</em></td>\n<td>Email address to use when sending a copy of the donor passport.  Must be a valid email format.</td>\n</tr>\n<tr>\n<td><strong>sendDonorPassportWhenOrderDispatched</strong> <em>boolean</em></td>\n<td>Once the order is placed with the provider, an email containing the donor passport can be automatically emailed to the applicant.  Defaults to false.</td>\n</tr>\n<tr>\n<td><strong>sendStatusToUserGuids</strong> <em>collection, string</em></td>\n<td>Collection of identifiers for the client users that will receive status messages.</td>\n</tr>\n<tr>\n<td><strong>copyStatusToPendingNotes</strong> <em>boolean</em></td>\n<td>Set to true to copy status messages from provider to the order's pending notes.  Defaults to false.</td>\n</tr>\n<tr>\n<td><strong>excludeThirdParty</strong> <em>boolean</em></td>\n<td>Set to true to prevent users from seeing third party collection sites in the ClearMD scheduling widget.</td>\n</tr>\n<tr>\n<td><strong>useProviderEmailSettings</strong> <em>boolean</em></td>\n<td>Set to true to use the provider email settings when sending donor passport.</td>\n</tr>\n<tr>\n<td><strong>autoAddCollectionSiteFees</strong> <em>boolean</em></td>\n<td>Set to true to automatically add outstanding collection site fees when the initial charged amount is less than the collection site fee.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}","preferences","clearmd"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"e6130566-91d4-479e-b4a7-ce7fee514271","name":"Update ClearMD Settings","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"interfaceSettingsGuid\": \"217e6532-3331-11ea-acb8-7ece90654a41\",\n    \"applicantPassportInstructions\": \"passport instructions\",\n    \"sendCopyOfDonorPassport\": true,\n    \"copyOfDonorPassportSendEmail\": \"success@simulator.amazonses.com\",\n    \"sendDonorPassportWhenOrderDispatched\": false,\n    \"sendStatusToUserGuids\": [\"20f8fe8c-1911-11e9-9007-571a7e28501a\"],\n    \"copyStatusToPendingNotes\": false,\n    \"excludeThirdParty\": true,\n    \"useProviderEmailSettings\": true,\n    \"autoAddCollectionSiteFees\": true\n}","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients/{{client-guid}}/preferences/clearmd"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"interfaceSettingsGuid\": \"217e6532-3331-11ea-acb8-7ece90654a41\",\n    \"applicantPassportInstructions\": \"passport instructions\",\n    \"sendCopyOfDonorPassport\": true,\n    \"copyOfDonorPassportSendEmail\": \"success@simulator.amazonses.com\",\n    \"sendDonorPassportWhenOrderDispatched\": false,\n    \"sendStatusToUserGuids\": [\"20f8fe8c-1911-11e9-9007-571a7e28501a\"],\n    \"copyStatusToPendingNotes\": false,\n    \"excludeThirdParty\": true,\n    \"useProviderEmailSettings\": true,\n    \"autoAddCollectionSiteFees\": true\n}"}],"_postman_id":"f73875d1-48d5-47c3-8c43-d110efd0c93f"},{"name":"Order Certification Text","event":[{"listen":"test","script":{"id":"316e572c-989d-4307-99b4-8a3b8ca17f43","exec":[""],"type":"text/javascript"}}],"id":"3e026e55-372c-466f-9455-2acc612dc103","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/preferences/certification/text","description":"<p><strong>Client API</strong></p>\n<p>Retrieve the order certification template text that the client is using for certifying permissible purpose.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}","preferences","certification","text"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"f1c2d10b-a59b-4904-82df-5be0f3bd6b5a","name":"Order Certification Text","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{jwt-token}}"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/preferences/certification/text"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"standardOrderText\": \"<div>This is the text for a order certification.</div>\",\n    \"quickAppOrderText\": \"<p>I certify that I have seen this document and agree with the contents.</p>\"\n}"}],"_postman_id":"3e026e55-372c-466f-9455-2acc612dc103"}],"id":"1257ec9f-a0d3-4289-b0f9-cc2f8a249f56","description":"<p>Endpoints for updating client preferences and client product settings.</p>\n","_postman_id":"1257ec9f-a0d3-4289-b0f9-cc2f8a249f56","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}}},{"name":"Applicant Portal","item":[{"name":"Portal Settings","event":[{"listen":"test","script":{"id":"f1362e38-79a6-4a4f-bff2-afda93a0f8be","exec":[""],"type":"text/javascript"}}],"id":"bc0572a8-c3fb-4051-97fc-7db47fa730f5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/applicantportal/settings","description":"<p><strong>Client API</strong></p>\n<p>Retrieve information about a client's applicant portal settings.</p>\n<p>See <strong>Update Portal Settings</strong> for field descriptions.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}","applicantportal","settings"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"66fd913c-98b2-4db6-a6ce-736abc51d129","name":"Portal Settings","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/applicantportal/settings"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"enableApplicantPortal\": true,\n    \"showStatusCards\": true,\n    \"enableViewReport\": false,\n    \"useCustomTextForLandingPage\": true,\n    \"customTextForLandingPage\": \"<div><span style=\\\"font-weight: bold;\\\">My Custom Landing Page</span></div>\",\n    \"enableApplicantNotifications\": true,\n    \"useCustomInvitationEmailTemplate\": true,\n    \"useDefaultEmailTemplate\": false,\n    \"invitationEmailTemplateGuid\": \"c281b837-f2ed-4dda-a325-88d6f7728363\",\n    \"notifyQuickappApplicants\": true,\n    \"enableMessaging\": true,\n    \"notifyProcessor\": false,\n    \"notifyCra\": false,\n    \"notifyOther\": true,\n    \"notifyOtherEmailAddress\": \"me@foo.com, you@foo.com\",\n    \"notifyApplicantOfMessages\": true,\n    \"copyRequestorOnMessageNotifications\": false,\n    \"useCustomMessageEmailTemplate\": true,\n    \"useDefaultMessageEmailTemplate\": false,\n    \"messageEmailTemplateGuid\": \"dcb93147-845d-4724-a4c1-c2b1ac6aa6dd\",\n    \"alwaysShowRequiredDocuments\": false,\n    \"enableDisclosuresAndNotifications\": true,\n    \"useCustomTextForDocumentPage\": true,\n    \"customTextForDocumentPage\": \"<div>Custom Document Page</div><div><br></div><div><br></div>\",\n    \"sendRequiredDocumentReminderEmail\": true,\n    \"useCustomDocumentReminderEmailTemplate\": true,\n    \"useDefaultDocumentReminderEmailTemplate\": false,\n    \"documentReminderEmailTemplateGuid\": \"026df88d-523b-4242-a1ea-a1e1dd5ae768\"\n}"}],"_postman_id":"bc0572a8-c3fb-4051-97fc-7db47fa730f5"},{"name":"Update Portal Settings","event":[{"listen":"test","script":{"id":"900da45e-3f19-43b3-8fe1-4aaad881e6b3","exec":[""],"type":"text/javascript"}}],"id":"9cb65706-1d9f-4340-81d0-f7de3ead2b66","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"enableApplicantPortal\": true,\n    \"showStatusCards\": true,\n    \"enableViewReport\": false,\n    \"useCustomTextForLandingPage\": true,\n    \"customTextForLandingPage\": \"<div><span style=\\\"font-weight: bold;\\\">My Custom Landing Page</span></div>\",\n    \"enableApplicantNotifications\": true,\n    \"useCustomInvitationEmailTemplate\": true,\n    \"useDefaultEmailTemplate\": false,\n    \"invitationEmailTemplateGuid\": \"c281b837-f2ed-4dda-a325-88d6f7728363\",\n    \"notifyQuickappApplicants\": true,\n    \"enableMessaging\": true,\n    \"notifyProcessor\": false,\n    \"notifyCra\": false,\n    \"notifyOther\": true,\n    \"notifyOtherEmailAddress\": \"me@foo.com, you@foo.com\",\n    \"notifyApplicantOfMessages\": true,\n    \"copyRequestorOnMessageNotifications\": false,\n    \"useCustomMessageEmailTemplate\": true,\n    \"useDefaultMessageEmailTemplate\": false,\n    \"messageEmailTemplateGuid\": \"dcb93147-845d-4724-a4c1-c2b1ac6aa6dd\",\n    \"alwaysShowRequiredDocuments\": false,\n    \"enableDisclosuresAndNotifications\": true,\n    \"useCustomTextForDocumentPage\": true,\n    \"customTextForDocumentPage\": \"<div>Custom Document Page</div><div><br></div><div><br></div>\",\n    \"sendRequiredDocumentReminderEmail\": false\n}"},"url":"https://{{host}}/v1/clients/{{client-guid}}/applicantportal/settings","description":"<p><strong>Client API</strong></p>\n<p>Update a client's applicant portal settings.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>enableApplicantPortal</strong> <em>boolean</em></td>\n<td>Set to true to enable the applicant portal. This defaults to false.</td>\n</tr>\n<tr>\n<td><strong>showStatusCards</strong> <em>boolean</em></td>\n<td>Set to true to show status cards for applicants to see. This defaults to false.</td>\n</tr>\n<tr>\n<td><strong>enableViewReport</strong> <em>boolean</em></td>\n<td>Set to true to enable the view report button.  This defaults to false.</td>\n</tr>\n<tr>\n<td><strong>useCustomTextForLandingPage</strong> <em>boolean</em></td>\n<td>Set to true to use custom text for the applicant portal landing page. This defaults to false.</td>\n</tr>\n<tr>\n<td><strong>customTextForLandingPage</strong> <em>string</em></td>\n<td>The text to use for the landing page. This can contain html tags.</td>\n</tr>\n<tr>\n<td><strong>enableMessaging</strong> <em>boolean</em></td>\n<td>Set to true to enable applicant portal messaging. This defaults to false.</td>\n</tr>\n<tr>\n<td><strong>notifyProcessor</strong> <em>boolean</em></td>\n<td>Set to true to notify the processor of new messages. This defaults to false.</td>\n</tr>\n<tr>\n<td><strong>notifyCra</strong> <em>boolean</em></td>\n<td>Set to true to notify the CRA of new messages. This defaults to false.</td>\n</tr>\n<tr>\n<td><strong>notifyOther</strong> <em>boolean</em></td>\n<td>Set to true to notify others of new messages. This defaults to false.</td>\n</tr>\n<tr>\n<td><strong>notifyOtherEmailAddress</strong> <em>string</em></td>\n<td>To notify others, set which email addresses to use for notification. This is required when you enable notifying others. If using multiple emails, separate them with a comma.</td>\n</tr>\n<tr>\n<td><strong>notifyApplicantOfMessages</strong> <em>boolean</em></td>\n<td>When set to true, an email (and text when enabled) will be sent to the applicant notifying them when they receive a new message. This defaults to false.</td>\n</tr>\n<tr>\n<td><strong>copyRequestorOnMessageNotifications</strong> <em>boolean</em></td>\n<td>Set to true to notify the requestor at the same time the applicant is notified of emails.  This defaults to false.</td>\n</tr>\n<tr>\n<td><strong>useCustomMessageEmailTemplate</strong> <em>boolean</em></td>\n<td>Set to true to use a custom template for messaging emails. This defaults to false.</td>\n</tr>\n<tr>\n<td><strong>useDefaultMessageEmailTemplate</strong> <em>boolean</em></td>\n<td>Set to true to use the default message email template when notifying applicants of new messages.  This defaults to false.</td>\n</tr>\n<tr>\n<td><strong>messageEmailTemplateGuid</strong> <em>uuid</em></td>\n<td>The identifier for the custom message email template to use.  Use the <strong>GET Message Email Template</strong> endpoint to get a list of available custom message templates.</td>\n</tr>\n<tr>\n<td><strong>enableApplicantNotifications</strong> <em>boolean</em></td>\n<td>When true, the applicant will receive an email with a link to the applicant portal when a report is submitted. This defaults to false.</td>\n</tr>\n<tr>\n<td><strong>useCustomInvitationEmailTemplate</strong> <em>boolean</em></td>\n<td>Set to true to use a custom email template for email notifications. This defaults to false.</td>\n</tr>\n<tr>\n<td><strong>invitationEmailTemplateGuid</strong> <em>uuid</em></td>\n<td>The identifier for which custom email template to use. This is required when you enable using a custom email template. Use the <strong>GET Email Template</strong> endpoint to get a list of available email templates.</td>\n</tr>\n<tr>\n<td><strong>notifyQuickappApplicants</strong> <em>boolean</em></td>\n<td>Set to true to send an email to an applicant who completes a QuickApp application. This defaults to false.</td>\n</tr>\n<tr>\n<td><strong>alwaysShowRequiredDocuments</strong> <em>boolean</em></td>\n<td>When true, the required documents section will always be shown.  When false, it will only be shown when documents are required.  This defaults to false.</td>\n</tr>\n<tr>\n<td><strong>enableDisclosuresAndNotifications</strong> <em>boolean</em></td>\n<td>Set to true to enable disclosures and notifications for documents. This defaults to false.</td>\n</tr>\n<tr>\n<td><strong>useCustomTextForDocumentPage</strong> <em>boolean</em></td>\n<td>Set to true to use custom text for a document page.  This defaults to false.</td>\n</tr>\n<tr>\n<td><strong>customTextForDocumentPage</strong> <em>string</em></td>\n<td>The custom text to be used for the custom document page.  This can contain html tags.</td>\n</tr>\n<tr>\n<td><strong>sendRequiredDocumentReminderEmail</strong> <em>boolean</em></td>\n<td>Set to true to send the applicant a daily reminder if they have any incomplete required documents.  This defaults to false.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}","applicantportal","settings"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"0f0eaad7-ff74-47a8-a287-c1c5d74e73c2","name":"Update General Settings","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{jwt-token}}"}],"body":{"mode":"raw","raw":"{\n    \"enableApplicantPortal\": true,\n    \"showStatusCards\": true,\n    \"enableViewReport\": false,\n    \"useCustomTextForLandingPage\": true,\n    \"customTextForLandingPage\": \"<div><span style=\\\"font-weight: bold;\\\">My Custom Landing Page</span></div>\",\n    \"enableApplicantNotifications\": true,\n    \"useCustomInvitationEmailTemplate\": true,\n    \"useDefaultEmailTemplate\": false,\n    \"invitationEmailTemplateGuid\": \"c281b837-f2ed-4dda-a325-88d6f7728363\",\n    \"notifyQuickappApplicants\": true\n}","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients/{{client-guid}}/applicantportal/settings"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"enableApplicantPortal\": true,\n    \"showStatusCards\": true,\n    \"enableViewReport\": false,\n    \"useCustomTextForLandingPage\": true,\n    \"customTextForLandingPage\": \"<div><span style=\\\"font-weight: bold;\\\">My Custom Landing Page</span></div>\",\n    \"enableApplicantNotifications\": true,\n    \"useCustomInvitationEmailTemplate\": true,\n    \"useDefaultEmailTemplate\": false,\n    \"invitationEmailTemplateGuid\": \"c281b837-f2ed-4dda-a325-88d6f7728363\",\n    \"notifyQuickappApplicants\": true,\n    \"enableMessaging\": true,\n    \"notifyProcessor\": false,\n    \"notifyCra\": false,\n    \"notifyOther\": true,\n    \"notifyOtherEmailAddress\": \"me@foo.com, you@foo.com\",\n    \"notifyApplicantOfMessages\": true,\n    \"copyRequestorOnMessageNotifications\": false,\n    \"useCustomMessageEmailTemplate\": true,\n    \"useDefaultMessageEmailTemplate\": false,\n    \"messageEmailTemplateGuid\": \"dcb93147-845d-4724-a4c1-c2b1ac6aa6dd\",\n    \"alwaysShowRequiredDocuments\": false,\n    \"enableDisclosuresAndNotifications\": true,\n    \"useCustomTextForDocumentPage\": true,\n    \"customTextForDocumentPage\": \"<div>Custom Document Page</div><div><br></div><div><br></div>\",\n    \"sendRequiredDocumentReminderEmail\": false\n}"},{"id":"24b9eaa3-56ed-4e91-83c5-b98e372a31b1","name":"Update Messaging Settings","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{jwt-token}}"}],"body":{"mode":"raw","raw":"{\n    \"enableMessaging\": true,\n    \"notifyProcessor\": false,\n    \"notifyCra\": false,\n    \"notifyOther\": true,\n    \"notifyOtherEmailAddress\": \"me@foo.com, you@foo.com\",\n    \"notifyApplicantOfMessages\": true,\n    \"copyRequestorOnMessageNotifications\": false,\n    \"useCustomMessageEmailTemplate\": true,\n    \"useDefaultMessageEmailTemplate\": false,\n    \"messageEmailTemplateGuid\": \"dcb93147-845d-4724-a4c1-c2b1ac6aa6dd\"\n    \n}","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients/{{client-guid}}/applicantportal/settings"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"enableApplicantPortal\": true,\n    \"showStatusCards\": true,\n    \"enableViewReport\": false,\n    \"useCustomTextForLandingPage\": true,\n    \"customTextForLandingPage\": \"<div><span style=\\\"font-weight: bold;\\\">My Custom Landing Page</span></div>\",\n    \"enableApplicantNotifications\": true,\n    \"useCustomInvitationEmailTemplate\": true,\n    \"useDefaultEmailTemplate\": false,\n    \"invitationEmailTemplateGuid\": \"c281b837-f2ed-4dda-a325-88d6f7728363\",\n    \"notifyQuickappApplicants\": true,\n    \"enableMessaging\": true,\n    \"notifyProcessor\": false,\n    \"notifyCra\": false,\n    \"notifyOther\": true,\n    \"notifyOtherEmailAddress\": \"me@foo.com, you@foo.com\",\n    \"notifyApplicantOfMessages\": true,\n    \"copyRequestorOnMessageNotifications\": false,\n    \"useCustomMessageEmailTemplate\": true,\n    \"useDefaultMessageEmailTemplate\": false,\n    \"messageEmailTemplateGuid\": \"dcb93147-845d-4724-a4c1-c2b1ac6aa6dd\",\n    \"alwaysShowRequiredDocuments\": false,\n    \"enableDisclosuresAndNotifications\": true,\n    \"useCustomTextForDocumentPage\": true,\n    \"customTextForDocumentPage\": \"<div>Custom Document Page</div><div><br></div><div><br></div>\",\n    \"sendRequiredDocumentReminderEmail\": false\n}"},{"id":"285fc8fd-78e1-4766-9532-541549ed6632","name":"Update Document Settings","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{jwt-token}}"}],"body":{"mode":"raw","raw":"{\n    \"alwaysShowRequiredDocuments\": false,\n    \"enableDisclosuresAndNotifications\": true,\n    \"useCustomTextForDocumentPage\": true,\n    \"customTextForDocumentPage\": \"<div>Custom Document Page</div><div><br></div><div><br></div>\",\n    \"sendRequiredDocumentReminderEmail\": false\n}","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients/{{client-guid}}/applicantportal/settings"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"enableApplicantPortal\": true,\n    \"showStatusCards\": true,\n    \"enableViewReport\": false,\n    \"useCustomTextForLandingPage\": true,\n    \"customTextForLandingPage\": \"<div><span style=\\\"font-weight: bold;\\\">My Custom Landing Page</span></div>\",\n    \"enableApplicantNotifications\": true,\n    \"useCustomInvitationEmailTemplate\": true,\n    \"useDefaultEmailTemplate\": false,\n    \"invitationEmailTemplateGuid\": \"c281b837-f2ed-4dda-a325-88d6f7728363\",\n    \"notifyQuickappApplicants\": true,\n    \"enableMessaging\": true,\n    \"notifyProcessor\": false,\n    \"notifyCra\": false,\n    \"notifyOther\": true,\n    \"notifyOtherEmailAddress\": \"me@foo.com, you@foo.com\",\n    \"notifyApplicantOfMessages\": true,\n    \"copyRequestorOnMessageNotifications\": false,\n    \"useCustomMessageEmailTemplate\": true,\n    \"useDefaultMessageEmailTemplate\": false,\n    \"messageEmailTemplateGuid\": \"dcb93147-845d-4724-a4c1-c2b1ac6aa6dd\",\n    \"alwaysShowRequiredDocuments\": false,\n    \"enableDisclosuresAndNotifications\": true,\n    \"useCustomTextForDocumentPage\": true,\n    \"customTextForDocumentPage\": \"<div>Custom Document Page</div><div><br></div><div><br></div>\",\n    \"sendRequiredDocumentReminderEmail\": false\n}"}],"_postman_id":"9cb65706-1d9f-4340-81d0-f7de3ead2b66"},{"name":"Email Templates","event":[{"listen":"test","script":{"id":"d81fb462-f089-424e-ae0c-1ad17ad07171","exec":[""],"type":"text/javascript"}}],"id":"b474164e-dbeb-4e5f-a835-4691de764f0e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/applicantportal/emailTemplates","description":"<p><strong>Client API</strong></p>\n<p>Retrieve list of custom invitation email templates that can be used in applicant portal general settings for applicant portal invitations.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}","applicantportal","emailTemplates"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"5f32a48b-c3ac-4f1e-839c-8255de89287e","name":"Email Templates","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/applicantportal/emailTemplates"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"name\": \"Stern Invitation\",\n        \"guid\": \"c281b837-f2ed-4dda-a325-88d6f7728363\"\n    },\n    {\n        \"name\": \"Friendly Invitation\",\n        \"guid\": \"2c045efe-5439-45da-9a74-9835ebdc07da\"\n    }\n]"}],"_postman_id":"b474164e-dbeb-4e5f-a835-4691de764f0e"},{"name":"Message Email Templates","id":"bcd7cf25-6299-46fb-85be-62f89f1bc138","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/applicantportal/messageEmailTemplates","description":"<p><strong>Client API</strong></p>\n<p>Retrieve list of custom message email templates that can be used in applicant portal messaging settings for applicant notifications.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}","applicantportal","messageEmailTemplates"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"f49cecf4-e18f-4cca-ade4-bdd987eea0ed","name":"Email Templates","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/applicantportal/messageEmailTemplates"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"name\": \"Casual New Message Reminder\",\n        \"guid\": \"c281b837-f2ed-4dda-a325-88d6f7728363\"\n    },\n    {\n        \"name\": \"Anxiety Inducing Reminder Message\",\n        \"guid\": \"2c045efe-5439-45da-9a74-9835ebdc07da\"\n    }\n]"}],"_postman_id":"bcd7cf25-6299-46fb-85be-62f89f1bc138"},{"name":"Document Reminder Templates","id":"434cea80-b901-4dd2-9c88-ed3cfe6280be","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/applicantportal/documentReminderEmailTemplates","description":"<p><strong>Client API</strong></p>\n<p>Retrieve list of required document reminder email templates that can be used in applicant portal messaging settings for applicant notifications.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}","applicantportal","documentReminderEmailTemplates"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"30d9e05d-58c5-48bf-9a8a-f7f178430bca","name":"Document Reminder Templates","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/applicantportal/documentReminderEmailTemplates"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"name\": \"Document Reminder A\",\n        \"guid\": \"026df88d-523b-4242-a1ea-a1e1dd5ae768\"\n    }\n]"}],"_postman_id":"434cea80-b901-4dd2-9c88-ed3cfe6280be"},{"name":"Self-Authenticating Link","event":[{"listen":"test","script":{"id":"f1362e38-79a6-4a4f-bff2-afda93a0f8be","exec":[""],"type":"text/javascript","packages":{},"requests":{}}}],"id":"b37f3ccc-f1ae-4f5b-bdc8-5e582bca5a22","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/applicantportal/orders/{{order-guid}}/selfAuthLink","description":"<p><strong>CRA API</strong></p>\n<p>Get a self-authenticating link to a QuickApp order.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}","applicantportal","orders","{{order-guid}}","selfAuthLink"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"2c46de88-c1ea-4716-8856-9f8cb5dbb5d4","name":"Self-Authenticating Link","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/applicantportal/orders/{{order-guid}}/selfAuthLink"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"applicantPortalLink\": \"https://host/is/app/applicantPortal?x=s2mhgs636imf6c11ej74s6usoDrpGSujciEbJPyAzqXbVyZEG8BlFkIcRVicRtc9obDrxP&y=1058\",\n    \"expirationDate\": 1775585124336\n}"},{"id":"8af87a09-0935-4997-8d7e-2e5df1430605","name":"Self-Authenticating Link - Not QuickApp","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/applicantportal/orders/{{order-guid}}/selfAuthLink"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": \"VALIDATION_EXCEPTION\",\n    \"message\": \"This is not a QuickApp application. We can't provide an authenticating link for this order.\"\n}"}],"_postman_id":"b37f3ccc-f1ae-4f5b-bdc8-5e582bca5a22"}],"id":"d8643a4e-eb5f-4bfa-8f7b-f38c6c3b3637","description":"<p>Endpoints for updating client applicant portal settings.</p>\n","_postman_id":"d8643a4e-eb5f-4bfa-8f7b-f38c6c3b3637","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}}},{"name":"Disclosures","item":[{"name":"Disclosure Settings","event":[{"listen":"test","script":{"id":"e942e1a9-1e2c-47b6-990a-ca27a10ff9a5","exec":["",""],"type":"text/javascript"}}],"id":"2a7eca1b-21ac-478e-a4a2-03b6da1fd57d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/disclosures/settings","description":"<p><strong>Client API</strong></p>\n<p>Get information about basic disclosure settings and which disclosure forms are being used by a client.</p>\n<p>See <strong>Update Disclosure Settings</strong> for field descriptions.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}","disclosures","settings"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"94cb1988-8fba-4ba3-8647-ea655ed92105","name":"Disclosure Settings","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{jwt-token}}"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/disclosures/settings"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"autoConsumerCopySendPrice\": 0.0,\n    \"employmentDenial\": {\n        \"disclosureFormGuids\": [\n            \"96e982c2-c346-4195-aead-8f0b5bd39ab6\"\n        ],\n        \"author\": \"CLIENT\",\n        \"fulfiller\": \"CRA\",\n        \"deliveryMethod\": \"QUEUE\"\n    },\n    \"tenantDenialWithReason\": {\n        \"disclosureFormGuids\": [\n            \"6afa4562-a227-4e36-b055-a02882578441\"\n        ],\n        \"author\": \"CLIENT\",\n        \"fulfiller\": \"CLIENT\",\n        \"deliveryMethod\": \"QUICK_VIEW\"\n    },\n    \"consumerCopy\": {\n        \"disclosureFormGuids\": [\n            \"713f83cc-4a92-4827-8f2b-2cf9c4943ebd\"\n        ],\n        \"author\": \"CLIENT\",\n        \"fulfiller\": \"QUEUER\",\n        \"deliveryMethod\": \"QUEUE\"\n    },\n    \"customTemplate\": {\n    \t\"disclosureFormGuids\": [\n    \t\t\"4b704770-5f4e-4767-8165-260ef4ea023e\"\n    \t\t],\n    \t\t\"author\": \"CLIENT\",\n    \t\"fulfiller\": \"CLIENT\",\n    \t\"deliveryMethod\": \"QUEUE\"\n    \t}\n}"}],"_postman_id":"2a7eca1b-21ac-478e-a4a2-03b6da1fd57d"},{"name":"Update Disclosure Settings","event":[{"listen":"test","script":{"id":"6bc862fb-c670-455c-93a3-51aa840abeec","exec":["",""],"type":"text/javascript"}}],"id":"f6bf2e16-8680-4325-a2fb-1eeba4e8a0b6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"autoConsumerCopySendWhen\": null,\n    \"autoConsumerCopySendPrice\": 0.0,\n    \"notification613a\": null,\n    \"employmentDenial\": {\n        \"disclosureFormGuids\": [\n            \"96e982c2-c346-4195-aead-8f0b5bd39ab6\"\n        ],\n        \"author\": \"CLIENT\",\n        \"fulfiller\": \"CRA\",\n        \"deliveryMethod\": \"QUEUE\"\n    },\n    \"employmentWithdrawal\": null,\n    \"tenantDenialNonspecific\": null,\n    \"tenantDenialWithReason\": {\n        \"disclosureFormGuids\": [\n            \"6afa4562-a227-4e36-b055-a02882578441\"\n        ],\n        \"author\": \"CLIENT\",\n        \"fulfiller\": \"CLIENT\",\n        \"deliveryMethod\": \"QUICK_VIEW\"\n    },\n    \"tenantConditionalOffer\": null,\n    \"consumerCopy\": {\n        \"disclosureFormGuids\": [\n            \"713f83cc-4a92-4827-8f2b-2cf9c4943ebd\"\n        ],\n        \"author\": \"CLIENT\",\n        \"fulfiller\": \"QUEUER\",\n        \"deliveryMethod\": \"QUEUE\"\n    },\n    \"customTemplate\": {\n    \t\"disclosureFormGuids\": [\n    \t\t\"4b704770-5f4e-4767-8165-260ef4ea023e\"\n    \t\t],\n    \t\t\"author\": \"CLIENT\",\n    \t\"fulfiller\": \"CLIENT\",\n    \t\"deliveryMethod\": \"QUEUE\"\n    \t},\n    \t\n    \"preAdverseAction\": null,\n    \"identityTheft\": null\n}","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients/{{client-guid}}/disclosures/settings","description":"<p><strong>Client API</strong></p>\n<p>Update basic disclosure settings.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>autoConsumerCopySendWhen</strong> <em>string</em></td>\n<td>If you want to queue delivery of the consumer copy, define when this should happen.  Options are <em>ON_ALL_REPORTS</em> and <em>ONLY_WHEN_REQUESTED</em>.</td>\n</tr>\n<tr>\n<td><strong>autoConsumerCopySendPrice</strong> <em>double</em></td>\n<td>Price to be charged when queueing the delivery of the consumer copy.</td>\n</tr>\n<tr>\n<td><strong>notification613a</strong> <em><code>disclosureTypeSetting</code></em></td>\n<td>The settings for the 613a Notification disclosure type.</td>\n</tr>\n<tr>\n<td><strong>employmentDenial</strong> <em><code>disclosureTypeSetting</code></em></td>\n<td>The settings for the Adverse Action (Employment Denial) disclosure type.</td>\n</tr>\n<tr>\n<td><strong>employmentWithdrawal</strong> <em><code>disclosureTypeSetting</code></em></td>\n<td>The settings for the Adverse Action (Employment Withdrawal of Offer) disclosure type.</td>\n</tr>\n<tr>\n<td><strong>tenantDenialNonspecific</strong> <em><code>disclosureTypeSetting</code></em></td>\n<td>The settings for the Adverse Action (Tenant Denial Nonspecific) disclosure type.</td>\n</tr>\n<tr>\n<td><strong>tenantDenialWithReason</strong> <em><code>disclosureTypeSetting</code></em></td>\n<td>The settings for the Adverse Action (Tenant Denial with Reason(s)) disclosure type.</td>\n</tr>\n<tr>\n<td><strong>tenantConditionalOffer</strong> <em><code>disclosureTypeSetting</code></em></td>\n<td>The settings for the Adverse Action (Tenant Conditional Offer) disclosure type.</td>\n</tr>\n<tr>\n<td><strong>consumerCopy</strong> <em><code>disclosureTypeSetting</code></em></td>\n<td>The settings for the Consumer Copy disclosure type.</td>\n</tr>\n<tr>\n<td><strong>customTemplate</strong> <em><code>disclosureTypeSetting</code></em></td>\n<td>The settings for the Custom Template disclosure type.</td>\n</tr>\n<tr>\n<td><strong>preAdverseAction</strong> <em><code>disclosureTypeSetting</code></em></td>\n<td>The settings for the Pre-Adverse Action (Full Disclosure) disclosure type.</td>\n</tr>\n<tr>\n<td><strong>identityTheft</strong> <em><code>disclosureTypeSetting</code></em></td>\n<td>The settings for the Remedying the Effects of Identity Theft disclosure type.</td>\n</tr>\n</tbody>\n</table>\n</div><p><code>disclosureTypeSetting</code> object</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>disclosureFormGuids</strong> <em>collection, uuid</em></td>\n<td>List of the identifiers for the disclosure forms to assign to the disclosure type.</td>\n</tr>\n<tr>\n<td><strong>author</strong> <em>string</em></td>\n<td>The replacement tags in the disclosure form for author will be filled with this value.  The options are <em>CRA</em> and <em>CLIENT</em>.  Some clients cannot update which author will be used.</td>\n</tr>\n<tr>\n<td><strong>fulfiller</strong> <em>string</em></td>\n<td>The queue that disclosures will appear in if they need to be printed and mailed.  Options are <em>CRA</em>, <em>CLIENT</em>, and <em>QUEUER</em>.  Some clients cannot update which fulfiller will be used.</td>\n</tr>\n<tr>\n<td><strong>deliveryMethod</strong> <em>string</em></td>\n<td>Specify the delivery method for the disclosure type.  Options are <em>QUICK_VIEW</em> and <em>QUEUE</em>.  If QuickView is used, the consumer can decline or the letter may expire and it will default to the fulfiller's print queue.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}","disclosures","settings"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"5d276f4f-784f-4197-b14e-52fc0742970a","name":"Update Disclosure Settings","originalRequest":{"method":"PUT","header":[{"key":"Authorization","type":"text","value":"Bearer {{jwt-token}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"autoConsumerCopySendWhen\": null,\n    \"autoConsumerCopySendPrice\": 0.0,\n    \"notification613a\": null,\n    \"employmentDenial\": {\n        \"disclosureFormGuids\": [\n            \"96e982c2-c346-4195-aead-8f0b5bd39ab6\"\n        ],\n        \"author\": \"CLIENT\",\n        \"fulfiller\": \"CRA\",\n        \"deliveryMethod\": \"QUEUE\"\n    },\n    \"employmentWithdrawal\": null,\n    \"tenantDenialNonspecific\": null,\n    \"tenantDenialWithReason\": {\n        \"disclosureFormGuids\": [\n            \"6afa4562-a227-4e36-b055-a02882578441\"\n        ],\n        \"author\": \"CLIENT\",\n        \"fulfiller\": \"CLIENT\",\n        \"deliveryMethod\": \"QUICK_VIEW\"\n    },\n    \"tenantConditionalOffer\": null,\n    \"consumerCopy\": {\n        \"disclosureFormGuids\": [\n            \"713f83cc-4a92-4827-8f2b-2cf9c4943ebd\"\n        ],\n        \"author\": \"CLIENT\",\n        \"fulfiller\": \"QUEUER\",\n        \"deliveryMethod\": \"QUEUE\"\n    },\n    \"customTemplate\": {\n    \t\"disclosureFormGuids\": [\n    \t\t\"4b704770-5f4e-4767-8165-260ef4ea023e\"\n    \t\t],\n    \t\t\"author\": \"CLIENT\",\n    \t\"fulfiller\": \"CLIENT\",\n    \t\"deliveryMethod\": \"QUEUE\"\n    \t},\n    \t\n    \"preAdverseAction\": null,\n    \"identityTheft\": null\n}","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients/{{client-guid}}/disclosures/settings"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"autoConsumerCopySendPrice\": 0.0,\n    \"employmentDenial\": {\n        \"disclosureFormGuids\": [\n            \"96e982c2-c346-4195-aead-8f0b5bd39ab6\"\n        ],\n        \"author\": \"CLIENT\",\n        \"fulfiller\": \"CRA\",\n        \"deliveryMethod\": \"QUEUE\"\n    },\n    \"tenantDenialWithReason\": {\n        \"disclosureFormGuids\": [\n            \"6afa4562-a227-4e36-b055-a02882578441\"\n        ],\n        \"author\": \"CLIENT\",\n        \"fulfiller\": \"CLIENT\",\n        \"deliveryMethod\": \"QUICK_VIEW\"\n    },\n    \"consumerCopy\": {\n        \"disclosureFormGuids\": [\n            \"713f83cc-4a92-4827-8f2b-2cf9c4943ebd\"\n        ],\n        \"author\": \"CLIENT\",\n        \"fulfiller\": \"QUEUER\",\n        \"deliveryMethod\": \"QUEUE\"\n    },\n    \"customTemplate\": {\n    \t\"disclosureFormGuids\": [\n    \t\t\"4b704770-5f4e-4767-8165-260ef4ea023e\"\n    \t\t],\n    \t\t\"author\": \"CLIENT\",\n    \t\"fulfiller\": \"CLIENT\",\n    \t\"deliveryMethod\": \"QUEUE\"\n    \t}\n}"}],"_postman_id":"f6bf2e16-8680-4325-a2fb-1eeba4e8a0b6"},{"name":"Adverse Action Settings","event":[{"listen":"test","script":{"id":"07bd7f1f-7b2e-426b-8ba1-7485a0fb74c5","exec":["",""],"type":"text/javascript"}}],"id":"12f0163b-bc05-43eb-a8e6-31ad200bd8b6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/disclosures/adverse","description":"<p><strong>Client API</strong></p>\n<p>Get information about the adverse action settings for a client.</p>\n<p>See <strong>Update Adverse Action</strong> for field descriptions.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}","disclosures","adverse"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"18a12b97-6438-4764-ae27-48f893e8b167","name":"Adverse Action Settings","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{jwt-token}}"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/disclosures/adverse"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"queuePreAdverseWhenReportCompleted\": false,\n    \"queuePreAdversePrice\": 16.25,\n    \"automateDisclosureWhenUsingReportTool\": false,\n    \"preAdverseDeliveryFee\": 14.1,\n    \"adverseDeliveryFee\": 18.32,\n    \"sendAdverseActionReminder\": true,\n    \"adverseActionReminderDays\": 2,\n    \"adverseActionReminderEmail\": \"api-sandbox@tazworks.com\",\n    \"adverseActionReminderExcludeWeekends\": true,\n    \"sendAdverseActionReminderToRequestor\": true\n}"}],"_postman_id":"12f0163b-bc05-43eb-a8e6-31ad200bd8b6"},{"name":"Update Adverse Action","event":[{"listen":"test","script":{"id":"d788fd1e-5f17-462e-86f3-cffc11e8d583","exec":["",""],"type":"text/javascript"}}],"id":"17191991-0a49-4008-aa1a-ccc055a72f49","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"queuePreAdverseWhenReportCompleted\": false,\n    \"queuePreAdversePrice\": 16.25,\n    \"automateDisclosureWhenUsingReportTool\": false,\n    \"preAdverseDeliveryFee\": 14.1,\n    \"adverseDeliveryFee\": 18.32,\n    \"sendAdverseActionReminder\": true,\n    \"adverseActionReminderDays\": 2,\n    \"adverseActionReminderEmail\": \"reminder@disclosures.com\",\n    \"adverseActionReminderExcludeWeekends\": true,\n    \"sendAdverseActionReminderToRequestor\": true\n}","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients/{{client-guid}}/disclosures/adverse","description":"<p><strong>Client API</strong></p>\n<p>Update adverse action settings for a client.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>queuePreAdverseWhenReportCompleted</strong> <em>boolean</em></td>\n<td>Set to true to queue delivery of the pre-adverse action letter when the report is completed.  This defaults to false.</td>\n</tr>\n<tr>\n<td><strong>queuePreAdversePrice</strong> <em>double</em></td>\n<td>Price to charge when queuing the pre-adverse action.</td>\n</tr>\n<tr>\n<td><strong>automateDisclosureWhenUsingReportTool</strong> <em>boolean</em></td>\n<td>Set to true to automate the disclosure delivery when using the report decision tool.  This defaults to false.</td>\n</tr>\n<tr>\n<td><strong>preAdverseDeliveryFee</strong> <em>double</em></td>\n<td>Pre-adverse decision and disclosure delivery fee.</td>\n</tr>\n<tr>\n<td><strong>adverseDeliveryFee</strong> <em>double</em></td>\n<td>Adverse decision and disclosure delivery fee.</td>\n</tr>\n<tr>\n<td><strong>sendAdverseActionReminder</strong> <em>boolean</em></td>\n<td>Set to true to send an adverse action reminder.  This defaults to false.</td>\n</tr>\n<tr>\n<td><strong>adverseActionReminderDays</strong> <em>integer</em></td>\n<td>When sending adverse action reminders, send the reminder after this number of days.</td>\n</tr>\n<tr>\n<td><strong>adverseActionReminderEmail</strong> <em>string</em></td>\n<td>The email to send the adverse action reminder to.</td>\n</tr>\n<tr>\n<td><strong>adverseActionReminderExcludeWeekends</strong> <em>boolean</em></td>\n<td>Set to true to exclude sending adverse action reminders on weekends.  This defaults to false.</td>\n</tr>\n<tr>\n<td><strong>sendAdverseActionReminderToRequestor</strong> <em>boolean</em></td>\n<td>Set to true to always send the adverse action reminder letter to the requestor.  This defaults to false.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}","disclosures","adverse"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"3bdc99ac-db9e-4b3c-aa0b-e2cf08476f61","name":"Adverse Action Settings","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{jwt-token}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/disclosures/adverse"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"queuePreAdverseWhenReportCompleted\": false,\n    \"queuePreAdversePrice\": 16.25,\n    \"automateDisclosureWhenUsingReportTool\": false,\n    \"preAdverseDeliveryFee\": 14.1,\n    \"adverseDeliveryFee\": 18.32,\n    \"sendAdverseActionReminder\": true,\n    \"adverseActionReminderDays\": 2,\n    \"adverseActionReminderEmail\": \"api-sandbox@tazworks.com\",\n    \"adverseActionReminderExcludeWeekends\": true,\n    \"sendAdverseActionReminderToRequestor\": true\n}"}],"_postman_id":"17191991-0a49-4008-aa1a-ccc055a72f49"},{"name":"Jurisdiction Replacement Tag Settings","event":[{"listen":"test","script":{"id":"4028bf36-4d6f-40a0-ae78-a51418a4145a","exec":["",""],"type":"text/javascript"}}],"id":"0eae0cc3-3d21-4adf-ba97-58d0eaf8c4a3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/disclosures/jurisdiction","description":"<p><strong>Client API</strong></p>\n<p>Get information about the jurisdictional replacement tag settings for a client.</p>\n<p>See <strong>Update Jurisdictional Replacement Tags</strong> for field descriptions.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}","disclosures","jurisdiction"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"7db22814-f130-4abc-824d-e78be11a8fdb","name":"Jurisdiction Replacement Tag Settings","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{jwt-token}}"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/disclosures/jurisdiction"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"considerClientAddressInAdditionToJurisdiction\": false,\n    \"inAdditionToJurisdictionAdditionalJurisdictions\": [\n        {\n            \"state\": \"Alabama\",\n            \"county\": \"Blount\",\n            \"city\": \"Blountsville\"\n        },\n        {\n            \"state\": \"Alaska\",\n            \"county\": \"Bristol Bay\"\n        }\n    ],\n    \"considerClientAddressInAbsenceOfJurisdiction\": false,\n    \"inAbsenceOfJurisdictionAdditionalJurisdictions\": [\n        {\n            \"state\": \"Colorado\"\n        }\n    ]\n}"}],"_postman_id":"0eae0cc3-3d21-4adf-ba97-58d0eaf8c4a3"},{"name":"Update Jurisdiction Replacement Tags","event":[{"listen":"test","script":{"id":"3730fd85-e5c2-470c-8319-2693a0054a74","exec":["",""],"type":"text/javascript"}}],"id":"938fcdcf-9042-44c5-abe5-311cb5178df0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"considerClientAddressInAdditionToJurisdiction\": false,\n    \"inAdditionToJurisdictionAdditionalJurisdictions\": [\n        {\n            \"state\": \"Alabama\",\n            \"county\": \"Blount\",\n            \"city\": \"Blountsville\"\n        },\n        {\n            \"state\": \"Alaska\",\n            \"county\": \"Bristol Bay\",\n            \"city\": null\n        }\n    ],\n    \"considerClientAddressInAbsenceOfJurisdiction\": false,\n    \"inAbsenceOfJurisdictionAdditionalJurisdictions\": [\n        {\n            \"state\": \"Colorado\",\n            \"county\": null,\n            \"city\": null\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients/{{client-guid}}/disclosures/jurisdiction","description":"<p><strong>Client API</strong></p>\n<p>Update the jurisdictional replacement tag settings.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>considerClientAddressInAdditionToJurisdiction</strong> <em>boolean</em></td>\n<td>Set to true to consider the client address in addition to any jurisdiction collected with the order in the jurisdictional replacement tags.  This defaults to false.</td>\n</tr>\n<tr>\n<td><strong>inAdditionToJurisdictionAdditionalJurisdictions</strong> <em><code>disclosureJurisdiction</code></em></td>\n<td>List any jurisdictions to always consider in addition to jurisdictions collected with the order.</td>\n</tr>\n<tr>\n<td><strong>considerClientAddressInAbsenceOfJurisdiction</strong> <em>boolean</em></td>\n<td>Set to true to consider the client address in absence of any jurisdictions collected with the order in the jurisdictional replacement tags.  This defaults to false.</td>\n</tr>\n<tr>\n<td><strong>inAbsenceOfJurisdictionAdditionalJurisdictions</strong> <em><code>disclosureJurisdiction</code></em></td>\n<td>List any jurisdictions to always consider in absence of any jurisdictions collected with the order.</td>\n</tr>\n</tbody>\n</table>\n</div><p><code>disclosureJurisdiction</code> object</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>state</strong> <em>required, string</em></td>\n<td>The jurisdiction state.</td>\n</tr>\n<tr>\n<td><strong>county</strong> <em>string</em></td>\n<td>The jurisdiction county.</td>\n</tr>\n<tr>\n<td><strong>city</strong> <em>string</em></td>\n<td>The jurisdiction city.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}","disclosures","jurisdiction"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"b9771ec8-6cd6-4d5b-a9d1-ef1d3d72bff6","name":"Update Jurisdiction Replacement Tags","originalRequest":{"method":"PUT","header":[{"key":"Authorization","type":"text","value":"Bearer {{jwt-token}}"}],"body":{"mode":"raw","raw":"{\n    \"considerClientAddressInAdditionToJurisdiction\": false,\n    \"inAdditionToJurisdictionAdditionalJurisdictions\": [\n        {\n            \"state\": \"Alabama\",\n            \"county\": \"Blount\",\n            \"city\": \"Blountsville\"\n        },\n        {\n            \"state\": \"Alaska\",\n            \"county\": \"Bristol Bay\",\n            \"city\": null\n        }\n    ],\n    \"considerClientAddressInAbsenceOfJurisdiction\": false,\n    \"inAbsenceOfJurisdictionAdditionalJurisdictions\": [\n        {\n            \"state\": \"Colorado\",\n            \"county\": null,\n            \"city\": null\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients/{{client-guid}}/disclosures/jurisdiction"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"considerClientAddressInAdditionToJurisdiction\": false,\n    \"inAdditionToJurisdictionAdditionalJurisdictions\": [\n        {\n            \"state\": \"Alabama\",\n            \"county\": \"Blount\",\n            \"city\": \"Blountsville\"\n        },\n        {\n            \"state\": \"Alaska\",\n            \"county\": \"Bristol Bay\"\n        }\n    ],\n    \"considerClientAddressInAbsenceOfJurisdiction\": false,\n    \"inAbsenceOfJurisdictionAdditionalJurisdictions\": [\n        {\n            \"state\": \"Colorado\"\n        }\n    ]\n}"}],"_postman_id":"938fcdcf-9042-44c5-abe5-311cb5178df0"}],"id":"6a92b0e0-7c16-4c96-b394-122f51ddc56e","description":"<p>Endpoints related to client disclosure settings.</p>\n","event":[{"listen":"prerequest","script":{"id":"63e78cc0-218a-420d-9069-2a80e45609fc","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"9bc40862-5ff5-4ccf-9959-77fc0cc0f3e0","type":"text/javascript","exec":[""]}}],"_postman_id":"6a92b0e0-7c16-4c96-b394-122f51ddc56e","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}}},{"name":"Client Users","item":[{"name":"Create User","event":[{"listen":"test","script":{"id":"b81e6b2a-fa23-4d82-84ac-1c899b5c3665","exec":[""],"type":"text/javascript"}}],"id":"1c11fbd0-5945-414a-9e57-43ac6acf899b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"userGuid\": null,\n    \"firstName\": \"Jane\",\n    \"lastName\": \"Doe\",\n    \"jobTitle\": \"Standard User\",\n    \"phone\": \"(555) 555-9048\",\n    \"phoneExtension\": \"123\",\n    \"phoneAlternate\": \"(555) 555-3344\",\n    \"phoneAlternateExtension\": \"x789\",\n    \"fax\": \"(555) 555-2222\",\n    \"notes\": \"notes\",\n    \"email\": \"api-sandbox@tazworks.com\",\n    \"username\": \"janedoe\",\n    \"newPassword\": \"password\",\n    \"status\": \"ACTIVE\",\n    \"disabledMessage\": \"\",\n    \"disabledReason\": \"\",\n    \"mfaAuthenticationMethod\": \"RESET\",\n    \"mfaEmail\": null,\n    \"mfaPhone\": null,\n    \"loginType\": \"STANDARD\",\n    \"faxInstructions\": null,\n    \"sendNewAccountSetupEmail\": \"false\",\n    \"disableUserMfaEditing\": false,\n    \"userAccessIpList\": \"12.12.12.24,23.23.23.25\",\n    \"permissions\": [\"NON_ADMIN_ORDER_REPORTS\", \"NON_ADMIN_ORDER_QUICKAPP\", \"NON_ADMIN_VIEW_REPORTS\"],\n    \"managementReports\": [\"HIT_RATIO\", \"DECISION\"],\n    \"investigativeReports\":[],\n    \"verificationReports\": [],\n    \"credentialReports\": [],\n    \"otherReports\": []\n}"},"url":"https://{{host}}/v1/clients/{{client-guid}}/users","description":"<p><strong>Client API</strong></p>\n<p>Create a new client user.</p>\n<p>If you leave the <code>permissions</code> and the various reports fields empty, the system will assign default permissions based on the user login type. See <strong>User Default Permissions</strong> to get a list of what those defaults are. You can also choose to specify which permissions to add. The system will validate those permissions based on the user login type.</p>\n<h3 id=\"multi-factor-authentication-mfa\">Multi-Factor Authentication (MFA)</h3>\n<p>The first time a user logs into their account they will be required to provide a 6-digit verification code. The MFA code can be configured to be sent either to an email address, an authenticator app, or as a text message. Set the <code>mfaAuthenticationMethod</code> to RESET to prompt the user to set-up MFA authentication themselves on their first login. If you want to set it up for them, you can specify the method for them and set <code>disableUserMfaEditing</code> to true.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>MFA value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>RESET</td>\n<td>User will be prompted to set it up themselves.</td>\n</tr>\n<tr>\n<td>EMAIL</td>\n<td>MFA code will be sent to the user's email. You must provide the <code>mfaEmail</code> email address.</td>\n</tr>\n<tr>\n<td>PHONE</td>\n<td>MFA code will be sent via text message. You must provide the <code>mfaPhone</code> phone number.</td>\n</tr>\n<tr>\n<td>AUTHENTICATOR</td>\n<td>MFA code will be sent via an authenticator application</td>\n</tr>\n</tbody>\n</table>\n</div><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>userGuid</strong> <em>uuid</em></td>\n<td>The identifier for the user.</td>\n</tr>\n<tr>\n<td><strong>firstName</strong> <em>required, string</em></td>\n<td>User first name.</td>\n</tr>\n<tr>\n<td><strong>lastName</strong> <em>string</em></td>\n<td>User last name.</td>\n</tr>\n<tr>\n<td><strong>jobTitle</strong> <em>string</em></td>\n<td>Job title.</td>\n</tr>\n<tr>\n<td><strong>phone</strong> <em>string</em></td>\n<td>The phone number for the user. The number should follow a <code>(###) ###-####</code> format.</td>\n</tr>\n<tr>\n<td><strong>phoneExtension</strong> <em>string</em></td>\n<td>Phone number extension. This can be preceeded by an 'x' (i.e. \"1234\", \"x1234\").</td>\n</tr>\n<tr>\n<td><strong>phoneAlternate</strong> <em>string</em></td>\n<td>An alternate phone number for the user. The number should follow a <code>(###) ###-####</code> format.</td>\n</tr>\n<tr>\n<td><strong>phoneAlternateExtension</strong> <em>string</em></td>\n<td>The alternate phone number extension. This can be preceeded by an 'x' (i.e. \"1234\", \"x1234\").</td>\n</tr>\n<tr>\n<td><strong>fax</strong> <em>string</em></td>\n<td>Fax number for the user. The fax should follow a <code>(###) ###-####</code> format.</td>\n</tr>\n<tr>\n<td><strong>notes</strong> <em>string</em></td>\n<td>Any notes about the user.</td>\n</tr>\n<tr>\n<td><strong>email</strong> <em>string</em></td>\n<td>The email for the user. This needs to be a valid email format.</td>\n</tr>\n<tr>\n<td><strong>username</strong> <em>string</em></td>\n<td>The username for the user.</td>\n</tr>\n<tr>\n<td><strong>newPassword</strong> <em>string</em></td>\n<td>The new password for the user.</td>\n</tr>\n<tr>\n<td><strong>forcePasswordChange</strong> <em>boolean</em></td>\n<td>Whether user will be prompted to change their password. This will get set to TRUE when a new client user is being created.</td>\n</tr>\n<tr>\n<td><strong>status</strong> <em>required, string</em></td>\n<td>The status for the user. Options for user <code>status</code> are ACTIVE and DISABLED. If a user has attempted to login too many times, their status will get set to DISABLED.</td>\n</tr>\n<tr>\n<td><strong>disabledMessage</strong> <em>string</em></td>\n<td>The message will be displayed when a disabled user attempts to login.</td>\n</tr>\n<tr>\n<td><strong>disabledReason</strong> <em>string</em></td>\n<td>The reason the user was disabled. This is not displayed to the user.</td>\n</tr>\n<tr>\n<td><strong>mfaAuthenticationMethod</strong> <em>string</em></td>\n<td>The type of multi-factor authentication method this user will use. Valid values are <em>RESET</em>, <em>EMAIL</em>, <em>PHONE</em>, and <em>AUTHENTICATOR</em>. See above table for explanations of these methods.</td>\n</tr>\n<tr>\n<td><strong>mfaEmail</strong> <em>string</em></td>\n<td>If the multi-factor authentication method is email, the email to be used. This needs to be a valid email format.</td>\n</tr>\n<tr>\n<td><strong>mfaPhone</strong> <em>string</em></td>\n<td>If the multi-factor authentication method is text message, the phone number to be used. The number should follow a <code>(###) ###-####</code> format.</td>\n</tr>\n<tr>\n<td><strong>loginType</strong> <em>required, string</em></td>\n<td>The type of this user.</td>\n</tr>\n<tr>\n<td><strong>faxInstructions</strong> <em>string</em></td>\n<td>Any fax instructions.</td>\n</tr>\n<tr>\n<td><strong>sendNewAccountSetupEmail</strong> <em>boolean</em></td>\n<td>Set to true to send an email to the user to set-up their account. This defaults to false.</td>\n</tr>\n<tr>\n<td><strong>disableUserMfaEditing</strong> <em>boolean</em></td>\n<td>Set to true to disable user from changing the multi-factor authentication method. This defaults to false.</td>\n</tr>\n<tr>\n<td><strong>userAccessIpList</strong> <em>string</em></td>\n<td>Comma-delimited list of valid IP addresses for this user.</td>\n</tr>\n<tr>\n<td><strong>permissions</strong> <em>collection,</em> <code>permissions</code></td>\n<td>Collection of <code>permission</code> objects defining basic overview of user permissions. This can be left blank and the system will assign default permissions based on the user login type.</td>\n</tr>\n<tr>\n<td><strong>managementReports</strong> _collection, <code>managementReports</code></td>\n<td>Collection of <code>managementReports</code> to which the user has access.</td>\n</tr>\n<tr>\n<td><strong>investigativeReports</strong> <em>collection,</em> <code>investigativeReports</code></td>\n<td>Collection of <code>investigateReports</code> to which the user has access.</td>\n</tr>\n<tr>\n<td><strong>verificationReports</strong> <em>collection,</em> <code>verificationReports</code></td>\n<td>Collection of <code>verificationReports</code> to which the user has access.</td>\n</tr>\n<tr>\n<td><strong>credentialReports</strong> <em>collection,</em> <code>credentialReports</code></td>\n<td>Collection of <code>credentialReports</code> to which the user has access.</td>\n</tr>\n<tr>\n<td><strong>otherReports</strong> <em>collection,</em> <code>otherReports</code></td>\n<td>Collection of <code>otherReports</code> to which the user has access.</td>\n</tr>\n</tbody>\n</table>\n</div><p>Read Only Fields</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>createdDate</strong> <em>date (long)</em></td>\n<td>The epoch date that the record was created.</td>\n</tr>\n<tr>\n<td><strong>createdBy</strong> <em>string</em></td>\n<td>The user who created the record.</td>\n</tr>\n<tr>\n<td><strong>modifiedDate</strong> <em>date (long)</em></td>\n<td>The epoch date that the record was last modified.</td>\n</tr>\n<tr>\n<td><strong>modifiedBy</strong> <em>string</em></td>\n<td>The user who last modified the record.</td>\n</tr>\n<tr>\n<td><strong>linkedUsers</strong> <em>collection</em></td>\n<td>List of any users linked to this user.</td>\n</tr>\n</tbody>\n</table>\n</div><p>Supported user <code>loginType</code> types:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>STANDARD</td>\n<td>Non-Administrative, Accounting, and Administrative access based on permissions granted</td>\n</tr>\n<tr>\n<td>XML_ONLY</td>\n<td>Can only place orders through the legacy XML API/Interchange. You must define an IP Address restriction for this user.</td>\n</tr>\n<tr>\n<td>NO_ACCESS</td>\n<td>Previously known as Fax Only. Cannot access the site, but will be listed as a possible requestor when ordering a report</td>\n</tr>\n<tr>\n<td>LINK_ONLY</td>\n<td>Linked Only accounts enable access to multiple clients for a single user and support different permissions for each client.</td>\n</tr>\n</tbody>\n</table>\n</div><p>Valid <code>permissions</code> are:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Permission</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>NON_ADMIN_ORDER_REPORTS</td>\n<td>Order Reports (Non-Administrative)</td>\n</tr>\n<tr>\n<td>NON_ADMIN_ORDER_QUICKAPP</td>\n<td>Order QuickApp (Non-Administrative)</td>\n</tr>\n<tr>\n<td>VIEW_SOFTWARE_NEWS</td>\n<td>View Software News</td>\n</tr>\n<tr>\n<td>NON_ADMIN_VIEW_REPORTS</td>\n<td>View Reports (Non-Administrative)</td>\n</tr>\n<tr>\n<td>ACCOUNTING_VIEW_PRICES</td>\n<td>View Prices (Accounting)</td>\n</tr>\n<tr>\n<td>ACCOUNTING_VIEW_DETAILS</td>\n<td>View Details (Accounting)</td>\n</tr>\n<tr>\n<td>ACCOUNTING_VIEW_INVOICES</td>\n<td>View Invoices (Accounting)</td>\n</tr>\n<tr>\n<td>ADMIN_ORDER_REPORTS_USERS</td>\n<td>Order Reports for Other Users (Administrative)</td>\n</tr>\n<tr>\n<td>ADMIN_ORDER_REPORTS_CHILD_CLIENT</td>\n<td>Order Reports for Child Client (Administrative)</td>\n</tr>\n<tr>\n<td>ADMIN_VIEW_REPORTS_USERS</td>\n<td>View All Reports for Other Users (Administrative)</td>\n</tr>\n<tr>\n<td>ADMIN_VIEW_REPORTS_CHILD_CLIENT</td>\n<td>View All Reports for Child Clients (Administrative)</td>\n</tr>\n<tr>\n<td>ADMIN_VIEW_MGMT_REPORTS</td>\n<td>View Management Reports (Administrative)</td>\n</tr>\n<tr>\n<td>ADMIN_MANAGE_USERS</td>\n<td>Manage Users (Administrative)</td>\n</tr>\n<tr>\n<td>ADMIN_MOVE_REPORT</td>\n<td>Move Report (Administrative)</td>\n</tr>\n<tr>\n<td>ADMIN_VIEW_DOCUMENT_LIBRARY</td>\n<td>View Document Library (Administrative)</td>\n</tr>\n<tr>\n<td>ALLOW_USERS_TO_PROCESS_REPORTS</td>\n<td>Allow User to Process Reports</td>\n</tr>\n<tr>\n<td>VIEW_VENDOR_NOTES_MESSAGES</td>\n<td>View Vendor Notes/Messages</td>\n</tr>\n</tbody>\n</table>\n</div><p>Valid <code>managementReports</code> values are:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Management Report</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>DECISION</td>\n<td>Decision Report</td>\n</tr>\n<tr>\n<td>HIT_RATIO</td>\n<td>Hit Ratio Report</td>\n</tr>\n<tr>\n<td>PRODUCT_UTILIZATION</td>\n<td>Product Utilization</td>\n</tr>\n<tr>\n<td>RESIDENT_DECISION</td>\n<td>Resident Decision Analysis</td>\n</tr>\n<tr>\n<td>RESIDENT_RENT</td>\n<td>Resident Rent Analysis</td>\n</tr>\n<tr>\n<td>STATUS</td>\n<td>Status Reporting</td>\n</tr>\n<tr>\n<td>TIME_SERVICE</td>\n<td>Time Service Report</td>\n</tr>\n<tr>\n<td>METADATA</td>\n<td>Metadata Report</td>\n</tr>\n</tbody>\n</table>\n</div><p>Valid <code>investigativeReports</code> value are:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Investigative Report</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>COUNTY_CRIMINAL</td>\n<td>County Criminal Records</td>\n</tr>\n<tr>\n<td>STATE_CRIMINAL</td>\n<td>State Criminal Records</td>\n</tr>\n<tr>\n<td>FEDERAL_CRIMINAL</td>\n<td>Federal Criminal Records</td>\n</tr>\n<tr>\n<td>INTERNATIONAL_CRIMINAL</td>\n<td>International Criminal Records</td>\n</tr>\n<tr>\n<td>STATE_CRIMINAL_DATABASE</td>\n<td>State Criminal Database</td>\n</tr>\n<tr>\n<td>STATE_RENTAL</td>\n<td>State Rental Records Database Search</td>\n</tr>\n<tr>\n<td>LIEN_JUDGEMENT</td>\n<td>Lien and Judgement Filings</td>\n</tr>\n<tr>\n<td>SEX_OFFENDER</td>\n<td>Sex Offender Records</td>\n</tr>\n<tr>\n<td>ASSUMED_NAME</td>\n<td>Assumed Name Records</td>\n</tr>\n<tr>\n<td>BANKRUPTCY</td>\n<td>Bankruptcy Filings</td>\n</tr>\n<tr>\n<td>COUNTY_CIVIL</td>\n<td>County Civil Records</td>\n</tr>\n<tr>\n<td>FEDERAL_CIVIL</td>\n<td>Federal Civil Records</td>\n</tr>\n<tr>\n<td>GLOBAL_HOMELAND_SECURITY</td>\n<td>Global Security Watch List</td>\n</tr>\n<tr>\n<td>NATIONAL_RENTAL</td>\n<td>National Rental Records Database</td>\n</tr>\n<tr>\n<td>NATIONAL_CRIMINAL</td>\n<td>National Criminal Database</td>\n</tr>\n<tr>\n<td>NATIONAL_CRIMINAL_ALIAS</td>\n<td>National Criminal Database Alias</td>\n</tr>\n<tr>\n<td>CUSTOM</td>\n<td>Custom</td>\n</tr>\n</tbody>\n</table>\n</div><p>Valid <code>verificationReports</code> values are:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Verification Report</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>RESIDENCE</td>\n<td>Residence</td>\n</tr>\n<tr>\n<td>EMPLOYMENT</td>\n<td>Employment</td>\n</tr>\n<tr>\n<td>REFERENCE</td>\n<td>Reference</td>\n</tr>\n<tr>\n<td>PERSONAL_REFERENCE</td>\n<td>Personal Reference</td>\n</tr>\n<tr>\n<td>PROFESSIONAL_REFERENCE</td>\n<td>Professional Reference</td>\n</tr>\n<tr>\n<td>WORKERS_COMP</td>\n<td>Workers Compensation</td>\n</tr>\n<tr>\n<td>CUSTOM</td>\n<td>Custom</td>\n</tr>\n</tbody>\n</table>\n</div><p>Valid <code>credentialReports</code> values are:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Credentials Report</th>\n<th>Descriptionals</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>PROFESSIONAL_LICENSE</td>\n<td>Professional License</td>\n</tr>\n<tr>\n<td>EDUCATION</td>\n<td>Education</td>\n</tr>\n<tr>\n<td>COMMERCIAL_DRIVER_LICENSE</td>\n<td>Commercial Driver License</td>\n</tr>\n<tr>\n<td>INSTANT_DRIVER_RECORDS</td>\n<td>Instant Driver Records</td>\n</tr>\n<tr>\n<td>HEALTHCARE_COMPLIANCE</td>\n<td>Healthcare Compliance</td>\n</tr>\n<tr>\n<td>PSP_CRASH_INSPECTION</td>\n<td>PSP Crash &amp; Inspection</td>\n</tr>\n<tr>\n<td>CUSTOM</td>\n<td>Custom</td>\n</tr>\n</tbody>\n</table>\n</div><p>Valid <code>otherReports</code> values are:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Other Reports</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CREDIT_REPORTS</td>\n<td>Credit Reports</td>\n</tr>\n<tr>\n<td>CREDIT_REPORT_CUSTOM</td>\n<td>Custom Credit Reports</td>\n</tr>\n<tr>\n<td>CONSUMER_DISCLOSURE_LETTERS</td>\n<td>Consumer Disclosures (Letters)</td>\n</tr>\n<tr>\n<td>DENIAL_ACCEPTANCE_LETTERS</td>\n<td>Adverse/Pre-Adverse/Acceptance</td>\n</tr>\n<tr>\n<td>OCCUPATIONAL_HEALTH</td>\n<td>Occupational Health</td>\n</tr>\n<tr>\n<td>OCCUPATIONAL_HEALTH_CUSTOM</td>\n<td>Occupational Health Custom</td>\n</tr>\n<tr>\n<td>SOCIAL_SECURITY</td>\n<td>Social Security (Identify Development)</td>\n</tr>\n<tr>\n<td>PERSON_SEARCH</td>\n<td>Person Search (Identity Development)</td>\n</tr>\n<tr>\n<td>IDENTITY_CUSTOM</td>\n<td>Identity Development Custom</td>\n</tr>\n<tr>\n<td>VIEW_ATTACHMENTS</td>\n<td>View Attachments</td>\n</tr>\n<tr>\n<td>FORM_I9_AND_EVERIFY</td>\n<td>Form I-9 and E-Verify</td>\n</tr>\n<tr>\n<td>EXECUTIVE_SUMMARY</td>\n<td>Executive Summary (Summary Report)</td>\n</tr>\n<tr>\n<td>SCORECARD_PRO_SUMMARY</td>\n<td>Scorecard Pro (Summary Report)</td>\n</tr>\n<tr>\n<td>TENANT_SCORECARD_SUMMARY</td>\n<td>Tenant Scorecard (Summary Report)</td>\n</tr>\n<tr>\n<td>CUSTOM_SUMMARY_REPORTS</td>\n<td>Custom Summary Report</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}","users"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"94636907-47f7-40c0-bef3-f2dcc3be8b7a","name":"Create User","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n        \"userGuid\": null,\n        \"firstName\": \"Foo\",\n        \"lastName\": \"User\",\n        \"jobTitle\": \"Grand Poobah\",\n        \"phone\": null,\n        \"phoneExtension\": null,\n        \"phoneAlternate\": null,\n        \"phoneAlternateExtension\": null,\n        \"fax\": null,\n        \"notes\": null,\n        \"email\": null,\n        \"username\": \"foouser\",\n        \"newPassword\": null,\n        \"status\": \"ACTIVE\",\n        \"disabledMessage\": null,\n        \"disabledReason\": null,\n        \"mfaAuthenticationMethod\": \"AUTHENTICATOR\",\n        \"mfaEmail\": null,\n        \"mfaPhone\": null,\n        \"loginType\": \"STANDARD\",\n        \"faxInstructions\": null,\n        \"sendNewAccountSetupEmail\": false,\n        \"disableUserMfaEditing\": false,\n        \"userAccessIpList\": null\n    }","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients/{{client-guid}}/users"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n        \"userGuid\": \"cf251168-fbc3-47b8-9266-923e47474602\",\n        \"firstName\": \"Foo\",\n        \"lastName\": \"User\",\n        \"jobTitle\": \"Grand Poobah\",\n        \"username\": \"foouser\",\n        \"forcePasswordChange\": true,\n        \"status\": \"ACTIVE\",\n        \"mfaAuthenticationMethod\": \"AUTHENTICATOR\",\n        \"createdDate\": 1556893513000,\n        \"createdBy\": \"Foo Smith\",\n        \"modifiedDate\": 1565204469000,\n        \"modifiedBy\": \"Foo Smith\",\n        \"loginType\": \"STANDARD\",\n        \"sendNewAccountSetupEmail\": false,\n        \"disableUserMfaEditing\": false,\n        \"permissions\": [\n            \"NON_ADMIN_ORDER_QUICKAPP\",\n            \"NON_ADMIN_VIEW_REPORTS\",\n            \"ADMIN_VIEW_REPORTS_CHILD_CLIENT\",\n            \"ADMIN_VIEW_DOCUMENT_LIBRARY\",\n            \"ADMIN_VIEW_REPORTS_USERS\",\n            \"NON_ADMIN_ORDER_REPORTS\",\n            \"ADMIN_ORDER_REPORTS_USERS\",\n            \"ADMIN_VIEW_MGMT_REPORTS\",\n            \"ADMIN_ORDER_REPORTS_CHILD_CLIENT\"\n        ],\n        \"managementReports\": [\n            \"TIME_SERVICE\",\n            \"HIT_RATIO\",\n            \"STATUS\",\n            \"PRODUCT_UTILIZATION\"\n        ],\n        \"investigativeReports\": [\n            \"COUNTY_CRIMINAL\",\n            \"GLOBAL_HOMELAND_SECURITY\",\n            \"NATIONAL_RENTAL\",\n            \"FEDERAL_CIVIL\",\n            \"STATE_CRIMINAL_DATABASE\",\n            \"NATIONAL_CRIMINAL\",\n            \"NATIONAL_CRIMINAL_ALIAS\",\n            \"STATE_CRIMINAL\"\n        ],\n        \"verificationReports\": [\n            \"CUSTOM\",\n            \"PROFESSIONAL_REFERENCE\",\n            \"RESIDENCE\",\n            \"WORKERS_COMP\",\n            \"PERSONAL_REFERENCE\",\n            \"REFERENCE\",\n            \"EMPLOYMENT\"\n        ],\n        \"credentialReports\": [\n            \"CUSTOM\",\n            \"PSP_CRASH_INSPECTION\",\n            \"INSTANT_DRIVER_RECORDS\",\n            \"PROFESSIONAL_LICENSE\",\n            \"EDUCATION\",\n            \"COMMERCIAL_DRIVER_LICENSE\",\n            \"HEALTHCARE_COMPLIANCE\"\n        ],\n        \"otherReports\": [\n            \"IDENTITY_CUSTOM\",\n            \"CREDIT_REPORTS\",\n            \"CREDIT_REPORT_CUSTOM\",\n            \"CONSUMER_DISCLOSURE_LETTERS\",\n            \"FORM_I9_AND_EVERIFY\",\n            \"OCCUPATIONAL_HEALTH_CUSTOM\",\n            \"DENIAL_ACCEPTANCE_LETTERS\",\n            \"OCCUPATIONAL_HEALTH\",\n            \"CUSTOM_SUMMARY_REPORTS\",\n            \"VIEW_ATTACHMENTS\"\n        ]\n    }"}],"_postman_id":"1c11fbd0-5945-414a-9e57-43ac6acf899b"},{"name":"Update User","event":[{"listen":"test","script":{"id":"8577e733-d671-4ad6-b11f-d2778f927e0d","exec":[""],"type":"text/javascript"}}],"id":"b92af6e8-fe4c-453e-a789-f490e019959b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"userGuid\": {{user-guid}},\n    \"firstName\": \"Jane\",\n    \"lastName\": \"Doe\",\n    \"jobTitle\": \"New Title\",\n    \"phone\": \"(555) 555-9048\",\n    \"phoneExtension\": \"123\",\n    \"phoneAlternate\": \"(555) 555-3344\",\n    \"phoneAlternateExtension\": \"x789\",\n    \"fax\": \"(555) 555-2222\",\n    \"notes\": \"new notes\",\n    \"email\": \"api-sandbox@tazworks.com\",\n    \"username\": \"janedoe\",\n    \"newPassword\": \"password\",\n    \"status\": \"ACTIVE\",\n    \"mfaAuthenticationMethod\": \"RESET\",\n    \"loginType\": \"STANDARD\",\n    \"sendNewAccountSetupEmail\": \"false\",\n    \"disableUserMfaEditing\": false,\n    \"userAccessIpList\": \"12.12.12.24,23.23.23.25\",\n    \"permissions\": [\"NON_ADMIN_ORDER_REPORTS\", \"NON_ADMIN_ORDER_QUICKAPP\", \"NON_ADMIN_VIEW_REPORTS\"],\n    \"managementReports\": [\"HIT_RATIO\", \"DECISION\"],\n    \"investigativeReports\":[],\n    \"verificationReports\": [],\n    \"credentialReports\": [],\n    \"otherReports\": []\n}"},"url":"https://{{host}}/v1/clients/{{client-guid}}/users/{{user-guid}}","description":"<p><strong>Client API</strong></p>\n<p>Update a client user. Do a <strong>GET</strong> call and then update the model for the fields you want changed.</p>\n<p>See <strong>Create User</strong> for field descriptions.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}","users","{{user-guid}}"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"013499bd-9d67-4607-8e64-6c609b57236c","name":"Update User","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n        \"userGuid\": \"cf251168-fbc3-47b8-9266-923e47474602\",\n        \"firstName\": \"Foo\",\n        \"lastName\": \"User\",\n        \"jobTitle\": \"Grand Poobah\",\n        \"username\": \"foouser\",\n        \"forcePasswordChange\": true,\n        \"status\": \"ACTIVE\",\n        \"mfaAuthenticationMethod\": \"AUTHENTICATOR\",\n        \"loginType\": \"STANDARD\",\n        \"sendNewAccountSetupEmail\": false,\n        \"disableUserMfaEditing\": false,\n        \"userAccessIpList\": null,\n        \"permissions\": [\n            \"NON_ADMIN_ORDER_QUICKAPP\",\n            \"NON_ADMIN_VIEW_REPORTS\",\n            \"ADMIN_VIEW_REPORTS_CHILD_CLIENT\",\n            \"ADMIN_VIEW_DOCUMENT_LIBRARY\",\n            \"ADMIN_VIEW_REPORTS_USERS\",\n            \"NON_ADMIN_ORDER_REPORTS\",\n            \"ADMIN_ORDER_REPORTS_USERS\",\n            \"ADMIN_VIEW_MGMT_REPORTS\",\n            \"ADMIN_ORDER_REPORTS_CHILD_CLIENT\"\n        ],\n        \"managementReports\": [\n            \"TIME_SERVICE\",\n            \"HIT_RATIO\",\n            \"STATUS\",\n            \"PRODUCT_UTILIZATION\"\n        ],\n        \"investigativeReports\": [\n            \"COUNTY_CRIMINAL\",\n            \"GLOBAL_HOMELAND_SECURITY\",\n            \"NATIONAL_RENTAL\",\n            \"FEDERAL_CIVIL\",\n            \"STATE_CRIMINAL_DATABASE\",\n            \"NATIONAL_CRIMINAL\",\n            \"NATIONAL_CRIMINAL_ALIAS\",\n            \"STATE_CRIMINAL\"\n        ],\n        \"verificationReports\": [\n            \"CUSTOM\",\n            \"PROFESSIONAL_REFERENCE\",\n            \"RESIDENCE\",\n            \"WORKERS_COMP\",\n            \"PERSONAL_REFERENCE\",\n            \"REFERENCE\",\n            \"EMPLOYMENT\"\n        ],\n        \"credentialReports\": [\n            \"CUSTOM\",\n            \"PSP_CRASH_INSPECTION\",\n            \"INSTANT_DRIVER_RECORDS\",\n            \"PROFESSIONAL_LICENSE\",\n            \"EDUCATION\",\n            \"COMMERCIAL_DRIVER_LICENSE\",\n            \"HEALTHCARE_COMPLIANCE\"\n        ],\n        \"otherReports\": [\n            \"IDENTITY_CUSTOM\",\n            \"CREDIT_REPORTS\",\n            \"CREDIT_REPORT_CUSTOM\",\n            \"CONSUMER_DISCLOSURE_LETTERS\",\n            \"FORM_I9_AND_EVERIFY\",\n            \"OCCUPATIONAL_HEALTH_CUSTOM\",\n            \"DENIAL_ACCEPTANCE_LETTERS\",\n            \"OCCUPATIONAL_HEALTH\",\n            \"CUSTOM_SUMMARY_REPORTS\",\n            \"VIEW_ATTACHMENTS\"\n        ]\n    }","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients/{{client-guid}}/users/{{user-guid}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n        \"userGuid\": \"cf251168-fbc3-47b8-9266-923e47474602\",\n        \"firstName\": \"Foo\",\n        \"lastName\": \"User\",\n        \"jobTitle\": \"Grand Poobah\",\n        \"username\": \"foouser\",\n        \"forcePasswordChange\": true,\n        \"status\": \"ACTIVE\",\n        \"mfaAuthenticationMethod\": \"AUTHENTICATOR\",\n        \"createdDate\": 1556893513000,\n        \"createdBy\": \"Foo Smith\",\n        \"modifiedDate\": 1565204469000,\n        \"modifiedBy\": \"Foo Smith\",\n        \"loginType\": \"STANDARD\",\n        \"sendNewAccountSetupEmail\": false,\n        \"disableUserMfaEditing\": false,\n        \"permissions\": [\n            \"NON_ADMIN_ORDER_QUICKAPP\",\n            \"NON_ADMIN_VIEW_REPORTS\",\n            \"ADMIN_VIEW_REPORTS_CHILD_CLIENT\",\n            \"ADMIN_VIEW_DOCUMENT_LIBRARY\",\n            \"ADMIN_VIEW_REPORTS_USERS\",\n            \"NON_ADMIN_ORDER_REPORTS\",\n            \"ADMIN_ORDER_REPORTS_USERS\",\n            \"ADMIN_VIEW_MGMT_REPORTS\",\n            \"ADMIN_ORDER_REPORTS_CHILD_CLIENT\"\n        ],\n        \"managementReports\": [\n            \"TIME_SERVICE\",\n            \"HIT_RATIO\",\n            \"STATUS\",\n            \"PRODUCT_UTILIZATION\"\n        ],\n        \"investigativeReports\": [\n            \"COUNTY_CRIMINAL\",\n            \"GLOBAL_HOMELAND_SECURITY\",\n            \"NATIONAL_RENTAL\",\n            \"FEDERAL_CIVIL\",\n            \"STATE_CRIMINAL_DATABASE\",\n            \"NATIONAL_CRIMINAL\",\n            \"NATIONAL_CRIMINAL_ALIAS\",\n            \"STATE_CRIMINAL\"\n        ],\n        \"verificationReports\": [\n            \"CUSTOM\",\n            \"PROFESSIONAL_REFERENCE\",\n            \"RESIDENCE\",\n            \"WORKERS_COMP\",\n            \"PERSONAL_REFERENCE\",\n            \"REFERENCE\",\n            \"EMPLOYMENT\"\n        ],\n        \"credentialReports\": [\n            \"CUSTOM\",\n            \"PSP_CRASH_INSPECTION\",\n            \"INSTANT_DRIVER_RECORDS\",\n            \"PROFESSIONAL_LICENSE\",\n            \"EDUCATION\",\n            \"COMMERCIAL_DRIVER_LICENSE\",\n            \"HEALTHCARE_COMPLIANCE\"\n        ],\n        \"otherReports\": [\n            \"IDENTITY_CUSTOM\",\n            \"CREDIT_REPORTS\",\n            \"CREDIT_REPORT_CUSTOM\",\n            \"CONSUMER_DISCLOSURE_LETTERS\",\n            \"FORM_I9_AND_EVERIFY\",\n            \"OCCUPATIONAL_HEALTH_CUSTOM\",\n            \"DENIAL_ACCEPTANCE_LETTERS\",\n            \"OCCUPATIONAL_HEALTH\",\n            \"CUSTOM_SUMMARY_REPORTS\",\n            \"VIEW_ATTACHMENTS\"\n        ]\n    }"}],"_postman_id":"b92af6e8-fe4c-453e-a789-f490e019959b"},{"name":"All Users","event":[{"listen":"test","script":{"id":"a09c047c-4b37-4d15-9ca0-3a0474ae4496","exec":[""],"type":"text/javascript"}}],"id":"d03e875d-ccb0-4610-b011-b99e34a24839","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/users","description":"<p><strong>Client API, Order API</strong></p>\n<p>Get all the users for a client.</p>\n<p>See <strong>Create User</strong> for field descriptions.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}","users"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"fb7b56c2-5445-4160-983c-1a158dead1c0","name":"All Users","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/users"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"userGuid\": \"9343d768-a450-438f-ad99-c386c8af6e8c\",\n        \"username\": \"ferndred\",\n        \"firstName\": \"Fern\",\n        \"lastName\": \"Dredge\",\n        \"jobTitle\": \"Driver\",\n        \"status\": \"ACTIVE\",\n        \"createdDate\": 1557778344000,\n        \"createdBy\": \"Foo Connector Foo Integrator\",\n        \"modifiedDate\": 1557778364000,\n        \"modifiedBy\": \"Foo Connector Foo Integrator\"\n    },\n    {\n        \"userGuid\": \"562a8303-49ad-4e41-a325-b60bc782115b\",\n        \"username\": \"postie\",\n        \"firstName\": \"Postman\",\n        \"lastName\": \"Test User\",\n        \"jobTitle\": \"Intern\",\n        \"status\": \"ACTIVE\",\n        \"email\": \"api-sandbox@tazworks.com\",\n        \"createdDate\": 1562796761000,\n        \"createdBy\": \"Foo Connector Foo Integrator\",\n        \"modifiedDate\": 1562796761000,\n        \"modifiedBy\": \"Foo Connector Foo Integrator\"\n    }\n]"}],"_postman_id":"d03e875d-ccb0-4610-b011-b99e34a24839"},{"name":"User Default Permissions","event":[{"listen":"test","script":{"id":"21a39a26-f76a-4583-aa26-de145e54104d","exec":[""],"type":"text/javascript"}}],"id":"ecba4a0e-9382-4ef4-93a5-e9fb47f03320","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/users/permissions/defaults","description":"<p><strong>Client API</strong></p>\n<p>Get a list of the default permissions that would be assigned to a new Client User if you do not specifically define them.  The default permissions are different for the different types of user.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}","users","permissions","defaults"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"9550d0ca-8e67-4ee0-87ae-343d6b97a8b5","name":"Get Permission Defaults","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/users/permissions/defaults"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"loginType\": \"NO_ACCESS\",\n        \"permissions\": [\n            \"NON_ADMIN_VIEW_REPORTS\",\n            \"NON_ADMIN_ORDER_REPORTS\",\n            \"NON_ADMIN_ORDER_QUICKAPP\"\n        ],\n        \"managementReports\": [],\n        \"investigativeReports\": [],\n        \"verificationReports\": [],\n        \"credentialReports\": [],\n        \"otherReports\": []\n    },\n    {\n        \"loginType\": \"XML_ONLY\",\n        \"permissions\": [\n            \"NON_ADMIN_VIEW_REPORTS\",\n            \"NON_ADMIN_ORDER_REPORTS\",\n            \"NON_ADMIN_ORDER_QUICKAPP\"\n        ],\n        \"managementReports\": [],\n        \"investigativeReports\": [],\n        \"verificationReports\": [],\n        \"credentialReports\": [],\n        \"otherReports\": []\n    },\n    {\n        \"loginType\": \"STANDARD\",\n        \"permissions\": [\n            \"NON_ADMIN_VIEW_REPORTS\",\n            \"ADMIN_VIEW_MGMT_REPORTS\",\n            \"ADMIN_VIEW_DOCUMENT_LIBRARY\",\n            \"NON_ADMIN_ORDER_REPORTS\",\n            \"NON_ADMIN_ORDER_QUICKAPP\"\n        ],\n        \"managementReports\": [\n            \"STATUS\",\n            \"TIME_SERVICE\",\n            \"PRODUCT_UTILIZATION\",\n            \"HIT_RATIO\"\n        ],\n        \"investigativeReports\": [\n            \"COUNTY_CRIMINAL\",\n            \"STATE_CRIMINAL\",\n            \"FEDERAL_CRIMINAL\",\n            \"INTERNATIONAL_CRIMINAL\",\n            \"STATE_RENTAL\",\n            \"LIEN_JUDGEMENT\",\n            \"SEX_OFFENDER\",\n            \"ASSUMED_NAME\",\n            \"BANKRUPTCY\",\n            \"COUNTY_CIVIL\",\n            \"FEDERAL_CIVIL\",\n            \"GLOBAL_HOMELAND_SECURITY\",\n            \"NATIONAL_RENTAL\",\n            \"NATIONAL_CRIMINAL\",\n            \"NATIONAL_CRIMINAL_ALIAS\",\n            \"STATE_CRIMINAL_DATABASE\",\n            \"CUSTOM\"\n        ],\n        \"verificationReports\": [\n            \"RESIDENCE\",\n            \"EMPLOYMENT\",\n            \"REFERENCE\",\n            \"PERSONAL_REFERENCE\",\n            \"PROFESSIONAL_REFERENCE\",\n            \"WORKERS_COMP\",\n            \"CUSTOM\"\n        ],\n        \"credentialReports\": [\n            \"PROFESSIONAL_LICENSE\",\n            \"EDUCATION\",\n            \"COMMERCIAL_DRIVER_LICENSE\",\n            \"INSTANT_DRIVER_RECORDS\",\n            \"HEALTHCARE_COMPLIANCE\",\n            \"PSP_CRASH_INSPECTION\",\n            \"CUSTOM\"\n        ],\n        \"otherReports\": [\n            \"CREDIT_REPORTS\",\n            \"CREDIT_REPORT_CUSTOM\",\n            \"CONSUMER_DISCLOSURE_LETTERS\",\n            \"DENIAL_ACCEPTANCE_LETTERS\",\n            \"OCCUPATIONAL_HEALTH\",\n            \"OCCUPATIONAL_HEALTH_CUSTOM\",\n            \"SOCIAL_SECURITY\",\n            \"PERSON_SEARCH\",\n            \"IDENTITY_CUSTOM\",\n            \"VIEW_ATTACHMENTS\",\n            \"FORM_I9_AND_EVERIFY\",\n            \"EXECUTIVE_SUMMARY\",\n            \"SCORECARD_PRO_SUMMARY\",\n            \"TENANT_SCORECARD_SUMMARY\",\n            \"CUSTOM_SUMMARY_REPORTS\"\n        ]\n    }\n]"}],"_postman_id":"ecba4a0e-9382-4ef4-93a5-e9fb47f03320"},{"name":"Add Permissions","event":[{"listen":"test","script":{"id":"9acba3b1-4ceb-49c0-8f4a-bf249b51b035","exec":[""],"type":"text/javascript"}}],"id":"3e1bbd55-9d37-4d4d-91e8-cf5d7860708b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/users/{{user-guid}}/permissions/add","description":"<p><strong>Client API</strong></p>\n<p>Add permissions to a client user.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}","users","{{user-guid}}","permissions","add"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"df48f4e4-40d4-44b0-a9ec-5b34558c9c31","name":"Add Permissions","originalRequest":{"method":"PUT","header":[{"key":"Authorization","type":"text","value":"Bearer {{jwt-token}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"userGuid\": \"{{client-user-guid}}\",\n    \"permissions\": [\n        \"ACCOUNTING_VIEW_PRICES\"\n    ],\n    \"managementReports\": [\n        \"TIME_SERVICE\"\n    ],\n    \"investigativeReports\": [\n        \"STATE_RENTAL\"\n    ],\n    \"verificationReports\": [\n        \"PERSONAL_REFERENCE\"\n    ],\n    \"credentialReports\": [\n        \"COMMERCIAL_DRIVER_LICENSE\"\n    ],\n    \"otherReports\": [\n        \"DENIAL_ACCEPTANCE_LETTERS\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients/{{client-guid}}/users/{{user-guid}}/permissions/add"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"\"Permissions have been added.\""}],"_postman_id":"3e1bbd55-9d37-4d4d-91e8-cf5d7860708b"},{"name":"Remove Permissions","event":[{"listen":"test","script":{"id":"6aa04db8-5215-41fb-965f-4a915999d30b","exec":[""],"type":"text/javascript"}}],"id":"dc2b4901-e9ae-4014-b3d0-25093d6ebdc2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/users/{{user-guid}}/permissions/remove","description":"<p><strong>Client API</strong></p>\n<p>Remove permissions from a client user.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}","users","{{user-guid}}","permissions","remove"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"fc5079aa-772e-467b-b712-e4cb3b86ec86","name":"Remove Permissions","originalRequest":{"method":"PUT","header":[{"key":"Authorization","type":"text","value":"Bearer {{jwt-token}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"userGuid\": \"{{client-user-guid}}\",\n    \"permissions\": [\n        \"ACCOUNTING_VIEW_PRICES\"\n    ],\n    \"managementReports\": [\n        \"TIME_SERVICE\"\n    ],\n    \"investigativeReports\": [\n        \"STATE_RENTAL\"\n    ],\n    \"verificationReports\": [\n        \"PERSONAL_REFERENCE\"\n    ],\n    \"credentialReports\": [\n        \"COMMERCIAL_DRIVER_LICENSE\"\n    ],\n    \"otherReports\": [\n        \"DENIAL_ACCEPTANCE_LETTERS\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients/{{client-guid}}/users/{{user-guid}}/permissions/remove"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"\"Permissions have been removed.\""}],"_postman_id":"dc2b4901-e9ae-4014-b3d0-25093d6ebdc2"},{"name":"Single User","event":[{"listen":"test","script":{"id":"e62e4d1f-a57a-4e1a-b011-2656a5893336","exec":[""],"type":"text/javascript"}}],"id":"79263973-cd30-4859-b06e-39a9ac4a44ae","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/users/{{user-guid}}","description":"<p><strong>Client API</strong></p>\n<p>Get information about a client user.</p>\n<p>See <strong>Create User</strong> for field descriptions.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}","users","{{user-guid}}"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"3f56acb8-d7d8-4b6a-b031-4db319c5bd83","name":"Single User","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/users/{{user-guid}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"userGuid\": \"foo-guid\",\n    \"firstName\": \"Charlie\",\n    \"lastName\": \"Foo\",\n    \"jobTitle\": \"Grand Poobah\",\n    \"username\": \"fooname\",\n    \"status\": \"ACTIVE\",\n    \"mfaAuthenticationMethod\": \"AUTHENTICATOR\",\n    \"createdDate\": 1556893513000,\n    \"createdBy\": \"Foo Jones\",\n    \"modifiedDate\": 1565204469000,\n    \"modifiedBy\": \"Foo Jones\",\n    \"loginType\": \"STANDARD\",\n    \"sendNewAccountSetupEmail\": false,\n    \"disableUserMfaEditing\": false,\n    \"permissions\": [\n        \"ADMIN_ORDER_REPORTS_CHILD_CLIENT\",\n        \"ADMIN_ORDER_REPORTS_USERS\",\n        \"ADMIN_VIEW_REPORTS_USERS\",\n        \"NON_ADMIN_ORDER_REPORTS\",\n        \"ADMIN_VIEW_MGMT_REPORTS\",\n        \"NON_ADMIN_VIEW_REPORTS\",\n        \"ADMIN_VIEW_REPORTS_CHILD_CLIENT\",\n        \"ADMIN_VIEW_DOCUMENT_LIBRARY\",\n        \"NON_ADMIN_ORDER_QUICKAPP\"\n    ],\n    \"managementReports\": [\n        \"HIT_RATIO\",\n        \"STATUS\",\n        \"TIME_SERVICE\",\n        \"PRODUCT_UTILIZATION\"\n    ],\n    \"investigativeReports\": [\n        \"NATIONAL_CRIMINAL_ALIAS\",\n        \"FEDERAL_CIVIL\",\n        \"STATE_RENTAL\",\n        \"ASSUMED_NAME\",\n        \"FEDERAL_CRIMINAL\"\n    ],\n    \"verificationReports\": [\n        \"CUSTOM\",\n        \"REFERENCE\",\n        \"EMPLOYMENT\",\n        \"WORKERS_COMP\",\n        \"PROFESSIONAL_REFERENCE\",\n        \"RESIDENCE\",\n        \"PERSONAL_REFERENCE\"\n    ],\n    \"credentialReports\": [\n        \"INSTANT_DRIVER_RECORDS\",\n        \"CUSTOM\",\n        \"PROFESSIONAL_LICENSE\",\n        \"COMMERCIAL_DRIVER_LICENSE\",\n        \"PSP_CRASH_INSPECTION\",\n        \"HEALTHCARE_COMPLIANCE\",\n        \"EDUCATION\"\n    ],\n    \"otherReports\": [\n        \"CONSUMER_DISCLOSURE_LETTERS\",\n        \"SOCIAL_SECURITY\",\n        \"SCORECARD_PRO_SUMMARY\"\n    ]\n}"},{"id":"45684de6-0417-4e06-993d-ae7790a33420","name":"Single User With Linked Users","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/users/{{user-guid}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"userGuid\": \"foo-guid\",\n    \"firstName\": \"Charlie\",\n    \"lastName\": \"Foo\",\n    \"jobTitle\": \"Grand Poobah\",\n    \"username\": \"fooname\",\n    \"status\": \"ACTIVE\",\n    \"mfaAuthenticationMethod\": \"AUTHENTICATOR\",\n    \"createdDate\": 1556893513000,\n    \"createdBy\": \"Foo Jones\",\n    \"modifiedDate\": 1565204469000,\n    \"modifiedBy\": \"Foo Jones\",\n    \"loginType\": \"STANDARD\",\n    \"sendNewAccountSetupEmail\": false,\n    \"disableUserMfaEditing\": false,\n    \"permissions\": [\n        \"ADMIN_ORDER_REPORTS_CHILD_CLIENT\",\n        \"ADMIN_ORDER_REPORTS_USERS\",\n        \"ADMIN_VIEW_REPORTS_USERS\",\n        \"NON_ADMIN_ORDER_REPORTS\",\n        \"ADMIN_VIEW_MGMT_REPORTS\",\n        \"NON_ADMIN_VIEW_REPORTS\",\n        \"ADMIN_VIEW_REPORTS_CHILD_CLIENT\",\n        \"ADMIN_VIEW_DOCUMENT_LIBRARY\",\n        \"NON_ADMIN_ORDER_QUICKAPP\"\n    ],\n    \"managementReports\": [\n        \"HIT_RATIO\",\n        \"STATUS\",\n        \"TIME_SERVICE\",\n        \"PRODUCT_UTILIZATION\"\n    ],\n    \"investigativeReports\": [\n        \"NATIONAL_CRIMINAL_ALIAS\",\n        \"FEDERAL_CIVIL\",\n        \"STATE_RENTAL\",\n        \"ASSUMED_NAME\",\n        \"FEDERAL_CRIMINAL\"\n    ],\n    \"verificationReports\": [\n        \"CUSTOM\",\n        \"REFERENCE\",\n        \"EMPLOYMENT\",\n        \"WORKERS_COMP\",\n        \"PROFESSIONAL_REFERENCE\",\n        \"RESIDENCE\",\n        \"PERSONAL_REFERENCE\"\n    ],\n    \"credentialReports\": [\n        \"INSTANT_DRIVER_RECORDS\",\n        \"CUSTOM\",\n        \"PROFESSIONAL_LICENSE\",\n        \"COMMERCIAL_DRIVER_LICENSE\",\n        \"PSP_CRASH_INSPECTION\",\n        \"HEALTHCARE_COMPLIANCE\",\n        \"EDUCATION\"\n    ],\n    \"otherReports\": [\n        \"CONSUMER_DISCLOSURE_LETTERS\",\n        \"SOCIAL_SECURITY\",\n        \"SCORECARD_PRO_SUMMARY\"\n    ],\n    \"linkedUsers\": [\n        {\n            \"clientName\": \"Acme, Inc.\",\n            \"clientGuid\": \"f8cd0b5a-a8d8-4d7b-887a-06716eb9ca5d\",\n            \"userName\": \"Linkable Sally\",\n            \"userGuid\": \"32f918ff-7a49-4487-8234-92345b947187\"\n        }\n    ]\n}"}],"_postman_id":"79263973-cd30-4859-b06e-39a9ac4a44ae"},{"name":"Delete User","event":[{"listen":"test","script":{"id":"fff1a714-01b2-4dbe-b333-83cc09abec38","exec":[""],"type":"text/javascript"}}],"id":"695643d9-aa0c-4d6d-bfdf-38058904986b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/users/{{user-guid}}","description":"<p><strong>Client API</strong></p>\n<p>Delete a client user.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}","users","{{user-guid}}"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"035c668d-011f-4e1e-adb3-9fa5743b2c8f","name":"Delete User","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/users/{{user-guid}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"\"Client user has been deleted.\""}],"_postman_id":"695643d9-aa0c-4d6d-bfdf-38058904986b"},{"name":"Available Linked Users","id":"effb4a3b-1065-4659-82be-c1f884a2901c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/users/{{user-guid}}/availableLinkedUsers","description":"<p><strong>CRA API</strong></p>\n<p>Get a list of available Link Only type users that could be linked to this user.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}","users","{{user-guid}}","availableLinkedUsers"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"aa1e3c35-ce15-4c37-a297-a5f3f4610ece","name":"Available Linked Users","originalRequest":{"method":"GET","header":[],"url":"https://{{host}}/v1/clients/{{client-guid}}/users/{{user-guid}}/availableLinkedUsers"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"name\": \"Linkable Sally\",\n        \"username\": \"LINKYSALL\",\n        \"userGuid\": \"32f918ff-7a49-4487-8234-92345b947187\",\n        \"clientName\": \"Child Client\",\n        \"clientGuid\": \"f8cd0b5a-a8d8-4d7b-887a-06716eb9ca5d\",\n        \"disabled\": false\n    },\n    {\n        \"name\": \"Linkable Joe\",\n        \"username\": \"LINKYJOE\",\n        \"userGuid\": \"d318f5db-3671-4186-9775-6e3502faceca\",\n        \"clientName\": \"Foreman Co.\",\n        \"clientGuid\": \"cb857519-6f35-4895-a496-7e94da19ebb9\",\n        \"disabled\": false\n    }\n]"}],"_postman_id":"effb4a3b-1065-4659-82be-c1f884a2901c"},{"name":"Link Users","id":"dca56519-b0de-4f25-a598-28432f8abdd5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"userGuidsToLink\": [\n        \"04031b51-58e5-431c-b4fa-34395107a51e\",\n        \"40cc5ddf-f70c-40db-8902-5f87b1b2b166\"\n    ]\n}"},"url":"https://{{host}}/v1/clients/{{client-guid}}/users/{{user-guid}}/link","description":"<p><strong>CRA API</strong></p>\n<p>Create the linked association between users. You can provide multiple users to link to. Use the <strong>GET Available Linked Users</strong> endpoint to get the identifiers for users that can be linked to.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>userGuidsToLink</strong> <em>required, collection, uuid</em></td>\n<td>Collection of user identifiers to link to</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}","users","{{user-guid}}","link"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"27b05704-23a4-431d-80cf-409e0c423fa4","name":"Invalid User for Linking","originalRequest":{"method":"POST","header":[{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"userGuidsToLink\": [\n        \"04031b51-58e5-431c-b4fa-34395107a51e\",\n        \"40cc5ddf-f70c-40db-8902-5f87b1b2b166\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients/{{client-guid}}/users/{{user-guid}}/link"},"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":"{\n    \"code\": \"VALIDATION_EXCEPTION\",\n    \"message\": \"Only standard users can have linked accounts\"\n}"},{"id":"8f01ea54-8c14-4f02-880a-febd9b69c030","name":"User Already Linked","originalRequest":{"method":"POST","header":[{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"userGuidsToLink\": [\n        \"04031b51-58e5-431c-b4fa-34395107a51e\",\n        \"40cc5ddf-f70c-40db-8902-5f87b1b2b166\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients/{{client-guid}}/users/{{user-guid}}/link"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": \"VALIDATION_EXCEPTION\",\n    \"message\": \"Bar, Foo is already linked to client Api Quickapp Client (Ebert, Eusebio).\"\n}"},{"id":"84f26096-ce01-4686-8f56-60a5935b7c14","name":"Link Users","originalRequest":{"method":"POST","header":[{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"userGuidsToLink\": [\n        \"04031b51-58e5-431c-b4fa-34395107a51e\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients/{{client-guid}}/users/{{user-guid}}/link"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"userGuid\": \"ec5a5956-f6d9-4caa-bbcd-a154e106d90e\",\n    \"firstName\": \"Maribel\",\n    \"lastName\": \"Schiller\",\n    \"jobTitle\": \"District Response Designer\",\n    \"username\": \"6uxauuki\",\n    \"forcePasswordChange\": true,\n    \"status\": \"ACTIVE\",\n    \"mfaAuthenticationMethod\": \"EMAIL\",\n    \"mfaEmail\": \"api-sandbox@tazworks.com\",\n    \"createdDate\": 1692288986000,\n    \"createdBy\": \"April Connector April 2020\",\n    \"modifiedDate\": 1692288986000,\n    \"modifiedBy\": \"April Connector April 2020\",\n    \"loginType\": \"STANDARD\",\n    \"sendNewAccountSetupEmail\": false,\n    \"disableUserMfaEditing\": false,\n    \"permissions\": [\n        \"ADMIN_VIEW_DOCUMENT_LIBRARY\",\n        \"NON_ADMIN_VIEW_REPORTS\",\n        \"ADMIN_VIEW_MGMT_REPORTS\",\n        \"NON_ADMIN_ORDER_QUICKAPP\",\n        \"NON_ADMIN_ORDER_REPORTS\"\n    ],\n    \"managementReports\": [\n        \"TIME_SERVICE\",\n        \"PRODUCT_UTILIZATION\",\n        \"HIT_RATIO\",\n        \"STATUS\"\n    ],\n    \"linkedUsers\": [\n        {\n            \"clientName\": \"Child Client\",\n            \"clientGuid\": \"f8cd0b5a-a8d8-4d7b-887a-06716eb9ca5d\",\n            \"userName\": \"Linkable Sally\",\n            \"userGuid\": \"32f918ff-7a49-4487-8234-92345b947187\"\n        }\n    ]\n}"}],"_postman_id":"dca56519-b0de-4f25-a598-28432f8abdd5"}],"id":"c01845b4-8be1-492e-9ed9-26fc62a7ea60","description":"<p>Endpoints allowing you to create, update, and delete client users.</p>\n","event":[{"listen":"prerequest","script":{"id":"db999168-acc9-4cd2-a6c9-b8f2eb7b2159","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"a4a3c029-ba0e-497e-a1ae-59e455e84fd5","type":"text/javascript","exec":[""]}}],"_postman_id":"c01845b4-8be1-492e-9ed9-26fc62a7ea60","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}}},{"name":"Client Products","item":[{"name":"All Base Products","event":[{"listen":"test","script":{"id":"dfda5d26-4488-4c6d-ad37-ee5c6d03d952","exec":["",""],"type":"text/javascript"}}],"id":"3a88635b-8f23-4763-b6fc-433ba9c84ba1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/baseproducts?page=0&size=30","description":"<p><strong>Client API</strong></p>\n<p>Get a list of available CRA products that can be used to create client products.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","baseproducts"],"host":["{{host}}"],"query":[{"description":{"content":"<p>Specify the page to retrieve.  Defaults to 0.</p>\n","type":"text/plain"},"key":"page","value":"0"},{"description":{"content":"<p>Specify the number of records per page.  Defaults to 30.</p>\n","type":"text/plain"},"key":"size","value":"30"}],"variable":[]}},"response":[{"id":"805ae646-3a63-4068-9662-c6c950d3d725","name":"All Base Products","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":{"raw":"https://{{host}}/v1/clients/baseproducts?page=0&size=30","protocol":"https","host":["{{host}}"],"path":["v1","clients","baseproducts"],"query":[{"key":"page","value":"0","description":"(optional) specify the page to retrieve"},{"key":"size","value":"30","description":"(optional) specify the number of records per page"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"productGuid\": \"50adbc4b-5b7c-4f0d-ace4-7b46668f3771\",\n        \"name\": \"Residence Search\",\n        \"orderEntryType\": \"volunteer\",\n        \"spouseEnabled\": false,\n        \"reportLayout\": \"Standard Layout\",\n        \"createdDate\": 1554989999000,\n        \"createdBy\": \"John Foo\",\n        \"modifiedDate\": 1554989999000,\n        \"modifiedBy\": \"John Foo\",\n        \"minimumYearsAddressHistory\": 0,\n        \"minimumNumberPreviousAddresses\": 0,\n        \"jurisdictionSelectionSettings\": {\n            \"searchesSelectedBy\": \"Empowerment\",\n            \"requireSearchForEachJurisdiction\": true,\n            \"permitSkippingSearches\": false,\n            \"jurisdictionsDevelopedUsing\": \"zip\",\n            \"populatePartialOrMissingDOB\": false,\n            \"excludeAliasNames\": false,\n            \"includeSearchesBasedOnHeader\": false,\n            \"includeApplicantProvidedNames\": false,\n            \"nameFilterFirstNameMatch\": \"Exact Match\",\n            \"nameFilterLastNameMatch\": \"Exact Match\"\n        },\n        \"includedSearches\": {\n            \"investigative\": [\n                \"County Criminal Records Search (default)\"\n            ],\n            \"verification\": [\n                \"Residence Verification (required)\"\n            ]\n        }\n    }\n] "}],"_postman_id":"3a88635b-8f23-4763-b6fc-433ba9c84ba1"},{"name":"Create Client Product","event":[{"listen":"test","script":{"id":"ed231801-8817-4304-9c17-807aea78217b","exec":[""],"type":"text/javascript","packages":{},"requests":{}}}],"id":"b93c25a3-b7cb-4f95-9e82-37cb8dccd7ba","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"clientProductGuid\": null,\n    \"productGuid\": \"{{product-guid}}\",\n    \"alternateName\": null,\n    \"clientProductNotes\": \"<div>notes <em>and some in italics</em></div>\",\n    \"disclaimer\": \"<div><strong>disclaimer</strong></div>\\n<div><u style=\\\"text-decoration: underline\\\"><strong>underlined</strong></u></div>\",\n    \"canProcessExternally\": true,\n    \"externalProcessingGoToStatus\": \"pending\",\n    \"externalProcessingFlaggedGoToStatus\": \"qa review\",\n    \"useDefaultAdjudicationCriteria\": false,\n    \"adjudicationCriteria\": null,\n    \"occupationalHealth\": {\n        \"collectionSiteNetwork\": \"external\",\n        \"usePanelDefaults\": true,\n        \"testSchedulerType\": null,\n        \"reasonForTesting\": \"POST_ACCIDENT\",\n        \"fulfillmentType\": null,\n        \"collectionExpirationDays\": 5,\n        \"excludeWeekends\": true,\n        \"allowChangesAtOrder\": true\n    }\n}"},"url":"https://{{host}}/v1/clients/{{client-guid}}/products","description":"<p><strong>Client API</strong></p>\n<p>Create a new client product.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>clientProductGuid</strong> <em>uuid</em></td>\n<td>The identifier for the client product.</td>\n</tr>\n<tr>\n<td><strong>productGuid</strong> <em>required, uuid</em></td>\n<td>The identifier for the product this client product will be associated with. Use the <strong>All Base Products</strong> to see a list of available products.</td>\n</tr>\n<tr>\n<td><strong>productName</strong> <em>string</em></td>\n<td>The product name (this is read-only and is included for GET responses).</td>\n</tr>\n<tr>\n<td><strong>alternateName</strong> <em>string</em></td>\n<td>You can specify an <code>alternateName</code> if you want the client to see a different product name when ordering.</td>\n</tr>\n<tr>\n<td><strong>clientProductNotes</strong> <em>string</em></td>\n<td>Notes added in <code>clientProductNotes</code> will appear when the client places the order.</td>\n</tr>\n<tr>\n<td><strong>usesQuickapp</strong> <em>boolean</em></td>\n<td>This is a read-only value which will be included in the response. It will be true if the client product is enabled for QuickApp. To enable a product for QuickApp, use the QuickApp endpoints.</td>\n</tr>\n<tr>\n<td><strong>canProcessExternally</strong> <em>boolean</em></td>\n<td>Can this product be processed by an external program. AI must be enabled for this feature. This defaults to false.</td>\n</tr>\n<tr>\n<td><strong>externalProcessingGoToStatus</strong> <em>string</em></td>\n<td>If external processor is enabled, this defines which status the search should move to after search results are processed. The available values are: <em>pending</em>, <em>ready</em>, <em>client message</em>, <em>pending review</em>, <em>qa review</em>, <em>complete</em></td>\n</tr>\n<tr>\n<td><strong>externalProcessingFlaggedGoToStatus</strong> <em>string</em></td>\n<td>If external processor is enabled, this defines which status the search should move to when the processor determines that a review is needed. The available values are: <em>pending</em>, <em>ready</em>, <em>client message</em>, <em>pending review</em>, <em>qa review</em>, <em>complete</em></td>\n</tr>\n<tr>\n<td><strong>disclaimer</strong> <em>string</em></td>\n<td>Disclaimer for the client product.</td>\n</tr>\n<tr>\n<td><strong>useDefaultAdjudicationCriteria</strong> <em>boolean</em></td>\n<td>This defaults to true.</td>\n</tr>\n<tr>\n<td><strong>adjudicationCriteria</strong> <em>string</em></td>\n<td>Adjudication criteria.</td>\n</tr>\n<tr>\n<td><strong>occupationalHealth</strong> <code>_occupationalHealth_</code></td>\n<td>Information for occupational health-related products.</td>\n</tr>\n</tbody>\n</table>\n</div><p>Read Only Fields</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>dateModified</strong> <em>date (long)</em></td>\n<td>The epoch date that the record was last modified.</td>\n</tr>\n<tr>\n<td><strong>modifiedBy</strong> <em>string</em></td>\n<td>The user who last modified the record.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"occupational-health\">Occupational Health</h3>\n<p>The <code>occupationalHealth</code> is only required for occupational health related products. The system will set some defaults related to occupational health even if your client product won't be including any occupational health searches.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>collectionSiteNetwork</strong> <em>required, string</em></td>\n<td>The <code>collectionSiteNetwork</code> is your drug screening partner. These must be pre-defined in the system. Use <strong>Collection Site Networks</strong> to get list of valid values. Depending on the collection site network, additional fields will apply.</td>\n</tr>\n<tr>\n<td><strong>usePanelDefaults</strong> <em>boolean</em></td>\n<td>Set to true to use drug panel defaults. This defaults to false.</td>\n</tr>\n<tr>\n<td><strong>testSchedulerType</strong> <em>string</em></td>\n<td>The test scheduler type.</td>\n</tr>\n<tr>\n<td><strong>reasonForTesting</strong> <em>string</em></td>\n<td>The reason for the drug testing.</td>\n</tr>\n<tr>\n<td><strong>allowChangesAtOrder</strong> <em>boolean</em></td>\n<td>Set to true to allow the defaults to be changed at the time you place the order. This defaults to false.</td>\n</tr>\n<tr>\n<td><strong>fulfillmentType</strong> <em>string</em></td>\n<td>Valid <code>fulfillmentType</code> values are <em>MANUAL</em>, <em>SSO</em> (Single Sign-on), and <em>APPLICANT_INVITE</em>. If the selected fulfillment type is not available on a drug panel, it will default to manual processing.</td>\n</tr>\n<tr>\n<td><strong>collectionExpirationDays</strong> <em>integer</em></td>\n<td>The number of days the applicant has to provide the sample for testing. For QuickApp orders, the clock doesn't start until after it is processed out of the Applicant Ready Queue.</td>\n</tr>\n<tr>\n<td><strong>excludeWeekends</strong> <em>boolean</em></td>\n<td>Set to true to exclude weekends. This defaults to false.</td>\n</tr>\n</tbody>\n</table>\n</div><p>Valid <code>testSchedulerType</code> values are:</p>\n<ul>\n<li><p>APPLICANT</p>\n</li>\n<li><p>QUICKAPP (Applicant for QuickApp only)</p>\n</li>\n<li><p>PROCESSOR</p>\n</li>\n<li><p>ORDER_TIME (Set at order time)</p>\n</li>\n</ul>\n<p>Valid <code>reasonForTesting</code> values are:</p>\n<ul>\n<li><p>PRE_EMPLOYMENT</p>\n</li>\n<li><p>RANDOM</p>\n</li>\n<li><p>PERIODIC</p>\n</li>\n<li><p>POST_ACCIDENT</p>\n</li>\n<li><p>FOR_CAUSE</p>\n</li>\n<li><p>SUSPICION</p>\n</li>\n<li><p>RETURN_TO_DUTY</p>\n</li>\n<li><p>FOLLOW_UP</p>\n</li>\n<li><p>RECONFIRMATION</p>\n</li>\n<li><p>RETEST</p>\n</li>\n<li><p>SAMPLING</p>\n</li>\n<li><p>STUDENT</p>\n</li>\n<li><p>OTHER</p>\n</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}","products"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"b64c9d11-faba-4136-91d3-8c4d3dd53f59","name":"Create Client Product","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"clientProductGuid\": null,\n    \"productGuid\": \"25c6b988-fb01-41b9-ae73-d639e3d96ab9\",\n    \"alternateName\": null,\n    \"clientProductNotes\": \"\",\n    \"canProcessExternally\": true,\n    \"externalProcessingGoToStatus\": \"pending\",\n    \"externalProcessingFlaggedGoToStatus\": \"qa review\",\n    \"disclaimer\": \"\",\n    \"useDefaultAdjudicationCriteria\": true,\n    \"adjudicationCriteria\": null,\n    \"occupationalHealth\": {\n        \"collectionSiteNetwork\": \"external\",\n        \"usePanelDefaults\": false,\n        \"testSchedulerType\": \"QUICKAPP\",\n        \"reasonForTesting\": \"PRE_EMPLOYMENT\",\n        \"fulfillmentType\": \"MANUAL\",\n        \"collectionExpirationDays\": null,\n        \"excludeWeekends\": false,\n        \"allowChangesAtOrder\": false\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients/{{client-guid}}/products"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"clientProductGuid\": \"5acb9546-b49c-4bc9-bba9-2c57f6faf9d8\",\n    \"productGuid\": \"25c6b988-fb01-41b9-ae73-d639e3d96ab9\",\n    \"productName\": \"Bankruptcy Filings Product\",\n    \"clientProductNotes\": \"\",\n    \"dateModified\": 1558544483000,\n    \"modifiedBy\": \"Sally Foo\",\n    \"usesQuickapp\": false,\n    \"canProcessExternally\": true,\n    \"externalProcessingGoToStatus\": \"pending\",\n    \"externalProcessingFlaggedGoToStatus\": \"qa review\",\n    \"disclaimer\": \"\",\n    \"useDefaultAdjudicationCriteria\": true,\n    \"occupationalHealth\": {\n        \"collectionSiteNetwork\": \"external\",\n        \"usePanelDefaults\": false,\n        \"testSchedulerType\": \"QUICKAPP\",\n        \"reasonForTesting\": \"PRE_EMPLOYMENT\",\n        \"fulfillmentType\": \"MANUAL\",\n        \"excludeWeekends\": false,\n        \"allowChangesAtOrder\": false\n    }\n}"}],"_postman_id":"b93c25a3-b7cb-4f95-9e82-37cb8dccd7ba"},{"name":"All Client Products","event":[{"listen":"test","script":{"id":"43c24477-2059-47e2-b87e-815f0c0560b1","exec":[""],"type":"text/javascript"}}],"id":"5c44897e-f352-4732-ab3e-9aaeabc92d74","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/products?page=0&size=30","description":"<p><strong>Client API, Order API</strong></p>\n<p>Get a list of all products for a client. The <code>page</code> will default to 0. The <code>size</code> will default to 30 records per page.</p>\n<p>See <strong>Create Client</strong> Product for field descriptions.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}","products"],"host":["{{host}}"],"query":[{"description":{"content":"<p>Specify the page to retrieve. Defaults to 0.</p>\n","type":"text/plain"},"key":"page","value":"0"},{"description":{"content":"<p>Specify the number of records per page.  Defaults to 30.</p>\n","type":"text/plain"},"key":"size","value":"30"}],"variable":[]}},"response":[{"id":"fee72861-3e28-4f7e-b268-9a22482c033f","name":"All Client Products","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":{"raw":"https://{{host}}/v1/clients/{{client-guid}}/products?page=0&size=30","protocol":"https","host":["{{host}}"],"path":["v1","clients","{{client-guid}}","products"],"query":[{"key":"page","value":"0","description":"(optional) Specify the page to retrieve.  Defaults to 0."},{"key":"size","value":"30","description":"(optional) Specify the number of records per page.  Defaults to 30."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n\t{\n        \"clientProductGuid\": \"e620a2bc-f294-455a-8a7d-d7c9f1b1a01e\",\n        \"productGuid\": \"aa8c0c6e-45f6-4c6a-a597-b55162459a39\",\n        \"productName\": \"Healthcare Compliance Product\",\n        \"clientProductNotes\": \"\",\n        \"dateModified\": 1558474768000,\n        \"modifiedBy\": \"John Foo\",\n        \"usesQuickapp\": true,\n        \"canProcessExternally\": false\n    },\n    {\n        \"clientProductGuid\": \"18a221c8-d47a-4df1-bc71-297f2450a500\",\n        \"productGuid\": \"b7d2beaa-8c7f-4c43-93b1-1afcaeef478b\",\n        \"productName\": \"Instant Driving Record Product\",\n        \"alternateName\": \"Instant Driving Record Exam\",\n        \"clientProductNotes\": \"\",\n        \"dateModified\": 1558105293000,\n        \"modifiedBy\": \"John Foo\",\n        \"usesQuickapp\": true,\n        \"canProcessExternally\": true,\n        \"externalProcessingGoToStatus\": \"pending review\"\n    }\n]"}],"_postman_id":"5c44897e-f352-4732-ab3e-9aaeabc92d74"},{"name":"Client Product Detail","event":[{"listen":"test","script":{"id":"d5cf0323-b8e8-49d2-8c49-8bc654216914","exec":[""],"type":"text/javascript"}}],"id":"ea68ebcb-4b1b-43d8-b6c6-87295618f881","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/products/{{client-product-guid}}","description":"<p><strong>Client API</strong></p>\n<p>Get detailed information about a client product.</p>\n<p>See <strong>Create Client Product</strong> for field descriptions.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}","products","{{client-product-guid}}"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"14f28ebb-bb9b-4b71-83a6-ab1f85b3a182","name":"Client Product Detail","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/products/{{client-product-guid}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"clientProductGuid\": \"5acb9546-b49c-4bc9-bba9-2c57f6faf9d8\",\n    \"productGuid\": \"25c6b988-fb01-41b9-ae73-d639e3d96ab9\",\n    \"productName\": \"Bankruptcy Filings Product\",\n    \"clientProductNotes\": \"\",\n    \"dateModified\": 1558544483000,\n    \"modifiedBy\": \"Sally Foo\",\n    \"usesQuickapp\": true,\n    \"canProcessExternally\": true,\n    \"externalProcessingGoToStatus\": \"pending\",\n    \"externalProcessingFlaggedGoToStatus\": \"qa review\",\n    \"disclaimer\": \"\",\n    \"useDefaultAdjudicationCriteria\": true,\n    \"occupationalHealth\": {\n        \"collectionSiteNetwork\": \"external\",\n        \"usePanelDefaults\": false,\n        \"testSchedulerType\": \"QUICKAPP\",\n        \"reasonForTesting\": \"PRE_EMPLOYMENT\",\n        \"fulfillmentType\": \"MANUAL\",\n        \"excludeWeekends\": false,\n        \"allowChangesAtOrder\": false\n    }\n}"}],"_postman_id":"ea68ebcb-4b1b-43d8-b6c6-87295618f881"},{"name":"Client Product Searches","event":[{"listen":"test","script":{"id":"70f32718-5958-4ef8-84b7-b25b84555f6f","exec":[""],"type":"text/javascript"}}],"id":"0094deb0-994b-4048-931d-c1b2b2409266","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/products/{{client-product-guid}}/searches","description":"<p><strong>Order API, Client API</strong></p>\n<p>Get a list of which searches are included on the client product.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>identityDevelopmentSearches</strong> <em>list</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>investigativeSearches</strong> <em>list</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>verificationSearches</strong> <em>list</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>credentialSearches</strong> <em>list</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>creditSearches</strong> <em>list</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>otherSearches</strong> <em>list</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>occupationalHealthSearches</strong> <em>list</em></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>type</strong> <em>list</em></td>\n<td>The type of search</td>\n</tr>\n<tr>\n<td><strong>displayName</strong> <em>list</em></td>\n<td>The display value for the search</td>\n</tr>\n<tr>\n<td><strong>orderedByDefault</strong> <em>list</em></td>\n<td>Whether or not this search is ordered by default with new orders.</td>\n</tr>\n<tr>\n<td><strong>customSearchGuid</strong> <em>list</em></td>\n<td>If the search is a custom search, this field will have the guid for the custom search.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}","products","{{client-product-guid}}","searches"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"60d105eb-df48-435d-8012-37cacf672ca1","name":"Client Product Searches","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/products/{{client-product-guid}}/searches"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"identityDevelopmentSearches\": [\n        {\n            \"type\": \"PERSON_SEARCH\",\n            \"displayName\": \"Person Search\",\n            \"orderedByDefault\": false\n        }\n    ],\n    \"investigativeSearches\": [\n        {\n            \"type\": \"INVESTIGATIVE_CUSTOM\",\n            \"displayName\": \"Custom Social Media Search\",\n            \"customGuid\": \"4622c1de-ca82-11e9-9254-aeb57f6061c5\",\n            \"orderedByDefault\": true\n        },\n        {\n            \"type\": \"NATIONAL_CRIMINAL_DATABASE\",\n            \"displayName\": \"National Criminal Database Search\",\n            \"orderedByDefault\": false\n        },\n        {\n            \"type\": \"COUNTY_CRIMINAL_RECORD\",\n            \"displayName\": \"County Crimes\",\n            \"orderedByDefault\": false\n        }\n    ],\n    \"verificationSearches\": [\n        {\n            \"type\": \"EMPLOYMENT_VERIFICATION\",\n            \"displayName\": \"Employment Verification\",\n            \"orderedByDefault\": false\n        }\n    ],\n    \"credentialSearches\": [\n        {\n            \"type\": \"EDUCATION_VERIFICATION\",\n            \"displayName\": \"Education Verification\",\n            \"orderedByDefault\": false\n        }\n    ],\n    \"creditSearches\": [\n        {\n            \"type\": \"CREDIT_CUSTOM\",\n            \"displayName\": \"Repository Custom Search\",\n            \"customGuid\": \"4622bcfc-ca82-11e9-9254-aeb57f6061c5\",\n            \"orderedByDefault\": false\n        }\n    ],\n    \"otherSearches\": [\n        {\n            \"type\": \"EXECUTIVE_SUMMARY\",\n            \"displayName\": \"Executive Summary Search\",\n            \"orderedByDefault\": true\n        }\n    ],\n    \"occupationalHealthSearches\": [\n        {\n            \"type\": \"SUBSTANCE_ABUSE\",\n            \"displayName\": \"10 Panel\",\n            \"orderedByDefault\": false\n        },\n        {\n            \"type\": \"SUBSTANCE_ABUSE\",\n            \"displayName\": \"5 Panel\",\n            \"orderedByDefault\": false\n        }\n    ]\n}"}],"_postman_id":"0094deb0-994b-4048-931d-c1b2b2409266"},{"name":"Client & SubClient Products","id":"59a8ed28-9a8d-47fb-9c52-799a5c29d413","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/products/subclients","description":"<p><strong>Client API</strong></p>\n<p>Lists client products and the searches on those products for a client and any subclients.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}","products","subclients"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"72b45d06-4ba3-4bb6-a6a0-68e481893ad6","name":"Client & SubClient Products","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/products/subclients"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"clientGuid\": \"5b9740e2-84c3-4f84-96ea-435ebbbdbd24\",\n    \"clientName\": \"Serious Parent\",\n    \"products\": [\n        {\n            \"clientProductGuid\": \"4c056f74-f263-4a3e-aeef-58a7e5b0d375\",\n            \"productName\": \"Assumed Name Product\",\n            \"searches\": [\n                \"Assumed Name Records Search\",\n                \"Person Search - Experian\"\n            ]\n        }\n    ],\n    \"subClients\": [\n        {\n            \"clientGuid\": \"2429baae-722a-47f2-8925-8ef6143ef244\",\n            \"clientName\": \"Serious Second Child\",\n            \"products\": [\n                {\n                    \"clientProductGuid\": \"f7cc5372-43e3-4e16-b7fc-689fa76e98a3\",\n                    \"productName\": \"Bankruptcy Filings Product\",\n                    \"searches\": [\n                        \"Bankruptcy Filings Search\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"clientGuid\": \"032916bd-d734-472f-98e1-68f8b74180b6\",\n            \"clientName\": \"Serious Child\",\n            \"products\": [\n                {\n                    \"clientProductGuid\": \"8a3c225c-a865-4317-b991-73df3c454ae0\",\n                    \"productName\": \"Assumed Name Product\",\n                    \"searches\": [\n                        \"Assumed Name Records Search\"\n                    ]\n                }\n            ],\n            \"subClients\": [\n                {\n                    \"clientGuid\": \"b3326dd2-6eef-444f-8fb0-41df14c587fc\",\n                    \"clientName\": \"Serious Third Tier\",\n                    \"products\": [\n                        {\n                            \"clientProductGuid\": \"522e7175-be68-47c5-a1e2-caa354afdccd\",\n                            \"productName\": \"County Criminal Records Product\",\n                            \"searches\": [\n                                \"County Criminal Records Search\"\n                            ]\n                        }\n                    ]\n                }\n            ]\n        }\n    ]\n}"}],"_postman_id":"59a8ed28-9a8d-47fb-9c52-799a5c29d413"},{"name":"Search Fields","event":[{"listen":"test","script":{"id":"e52f054c-2c39-49db-9066-cb3bf98cb4f2","exec":[""],"type":"text/javascript"}}],"id":"ad52ce43-a587-4b87-ac01-8c58d40d59ab","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/products/{{client-product-guid}}/fields","description":"<p><strong>Client API, Order API</strong></p>\n<p>Get a listing of which pieces of information will be needed for the searches included in a client product.</p>\n<p>The information is split out by which fields are related to the client product itself and which are specific to a search. It will also show which are optional and which are required.</p>\n<p>The <code>predefinedOptions</code> will display the options that are available for fields which have been configured to require the user to pick from a selected set of values.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}","products","{{client-product-guid}}","fields"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"e61833b6-c7a9-46bf-ab09-0a6edeb6c164","name":"Search Fields","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{jwt-token}}"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/products/{{client-product-guid}}/fields"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"clientProductGuid\": \"818e12e7-11a9-4437-89b7-e220c3abedb3\",\n    \"productName\": \"Custom Foo with Optionals\",\n    \"optionalFields\": [\n        {\n            \"name\": \"Drivers license\"\n        },\n        {\n            \"name\": \"Fruit Color\",\n            \"predefinedOptions\": [\n                \"Green\",\n                \"Red\",\n                \"Blue\"\n            ]\n        },\n        {\n            \"name\": \"Breakfast\",\n            \"predefinedOptions\": [\n                \"Protein Shake\",\n                \"Muffin\",\n                \"Eggs and Bacon\"\n            ]\n        }\n    ],\n    \"requiredFields\": [\n        {\n            \"name\": \"Explanation\"\n        },\n        {\n            \"name\": \"Warrants\",\n            \"predefinedOptions\": [\n                \"Liability\",\n                \"Search\"\n            ]\n        }\n    ],\n    \"searchFields\": [\n        {\n            \"search\": \"CREDENTIALS_CUSTOM\",\n            \"orderingOption\": \"required\",\n            \"personalIdentifierRequiredFields\": [\n                {\n                    \"name\": \"First name\"\n                },\n                {\n                    \"name\": \"Last name\"\n                }\n            ],\n            \"personalIdentifierOptionalFields\": [\n                {\n                    \"name\": \"Middle name\"\n                },\n                {\n                    \"name\": \"Birth date\"\n                },\n                {\n                    \"name\": \"Generation\"\n                },\n                {\n                    \"name\": \"Social Security number\"\n                },\n                {\n                    \"name\": \"Address\"\n                },\n                {\n                    \"name\": \"Street\"\n                }\n            ],\n            \"searchRequiredFields\": [],\n            \"searchOptionalFields\": []\n        }\n    ]\n}"}],"_postman_id":"ad52ce43-a587-4b87-ac01-8c58d40d59ab"},{"name":"Update Client Product","event":[{"listen":"test","script":{"id":"dbc1f76f-f60a-4255-a085-ff8612fef7b3","exec":[""],"type":"text/javascript","packages":{},"requests":{}}}],"id":"7133699e-3863-4058-9384-3b7139da7eda","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"clientProductGuid\": \"{{client-product-guid}}\",\n    \"productGuid\": \"{{product-guid}}\",\n    \"alternateName\": null,\n    \"clientProductNotes\": \"<div>notes <em>and some in italics</em></div>\",\n    \"canProcessExternally\": true,\n    \"externalProcessingGoToStatus\": \"pending\",\n    \"externalProcessingFlaggedGoToStatus\": \"qa review\",\n    \"disclaimer\": \"<div><strong>disclaimer</strong></div>\\n<div><u style=\\\"text-decoration: underline\\\"><strong>underlined</strong></u></div>\",\n    \"useDefaultAdjudicationCriteria\": false,\n    \"adjudicationCriteria\": null,\n    \"occupationalHealth\": {\n        \"collectionSiteNetwork\": \"external\",\n        \"usePanelDefaults\": true,\n        \"testSchedulerType\": null,\n        \"reasonForTesting\": \"POST_ACCIDENT\",\n        \"fulfillmentType\": null,\n        \"collectionExpirationDays\": 15,\n        \"excludeWeekends\": true,\n        \"allowChangesAtOrder\": true\n    }\n}"},"url":"https://{{host}}/v1/clients/{{client-guid}}/products/{{client-product-guid}}","description":"<p><strong>Client API</strong></p>\n<p>Update a client product. Do a <strong>GET</strong> call and then update the model for the fields you want changed.</p>\n<p>See <strong>Create Client Product</strong> for field descriptions.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}","products","{{client-product-guid}}"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"45518921-fa60-481b-8d91-d4f06d653e9c","name":"Update Client Product","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"clientProductGuid\": \"5acb9546-b49c-4bc9-bba9-2c57f6faf9d8\",\n    \"productGuid\": \"25c6b988-fb01-41b9-ae73-d639e3d96ab9\",\n    \"alternateName\": null,\n    \"clientProductNotes\": \"\",\n    \"disclaimer\": \"\",\n    \"useDefaultAdjudicationCriteria\": true,\n    \"adjudicationCriteria\": null,\n    \"occupationalHealth\": {\n        \"collectionSiteNetwork\": \"external\",\n        \"usePanelDefaults\": false,\n        \"testSchedulerType\": \"QUICKAPP\",\n        \"reasonForTesting\": \"PRE_EMPLOYMENT\",\n        \"fulfillmentType\": \"MANUAL\",\n        \"collectionExpirationDays\": null,\n        \"excludeWeekends\": false,\n        \"allowChangesAtOrder\": false\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients/{{client-guid}}/products/{{client-product-guid}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"clientProductGuid\": \"5acb9546-b49c-4bc9-bba9-2c57f6faf9d8\",\n    \"productGuid\": \"25c6b988-fb01-41b9-ae73-d639e3d96ab9\",\n    \"productName\": \"Bankruptcy Filings Product\",\n    \"clientProductNotes\": \"\",\n    \"dateModified\": 1558544483000,\n    \"modifiedBy\": \"Sally Foo\",\n    \"usesQuickapp\": false,\n    \"canProcessExternally\": false,\n    \"disclaimer\": \"\",\n    \"useDefaultAdjudicationCriteria\": true,\n    \"occupationalHealth\": {\n        \"collectionSiteNetwork\": \"external\",\n        \"usePanelDefaults\": false,\n        \"testSchedulerType\": \"QUICKAPP\",\n        \"reasonForTesting\": \"PRE_EMPLOYMENT\",\n        \"fulfillmentType\": \"MANUAL\",\n        \"excludeWeekends\": false,\n        \"allowChangesAtOrder\": false\n    }\n}"}],"_postman_id":"7133699e-3863-4058-9384-3b7139da7eda"},{"name":"Delete Client Product","event":[{"listen":"test","script":{"id":"fee42934-53d5-4684-8aa7-c9ef1aab2f17","exec":[""],"type":"text/javascript"}}],"id":"baf28fce-1b5e-45c3-ae76-3f9a81373b80","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/products/{{client-product-guid}}","description":"<p><strong>Client API</strong></p>\n<p>Delete a client product.  Deleting a product does not remove it from the system.  It will remove it from the list of available products for that client.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}","products","{{client-product-guid}}"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"3ba4ddb1-130c-48a1-837b-a664c791211a","name":"Delete Client Product","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/products/{{client-product-guid}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"\"Client product was deleted.\""}],"_postman_id":"baf28fce-1b5e-45c3-ae76-3f9a81373b80"},{"name":"QuickApp Emails/Disclosures (Legacy)","id":"82bd3bb3-3c1f-4753-8075-3823803ec367","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/products/quickapp/emails","description":"<p><strong>Client API</strong></p>\n<p>Get a list of the valid values for the various QuickApp emails and disclosure form set options for legacy QuickApp.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}","products","quickapp","emails"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"5fd780ab-9698-4831-a50a-e52b0887eafe","name":"QuickApp Emails/Disclosures","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/products/quickapp/emails"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"notificationEmailOptions\": \"Employment, Tenant, Volunteer\",\n    \"confirmationEmailOptions\": \"Employment, Tenant, Volunteer\",\n    \"reminderEmailOptions\": \"Standard Reminder\",\n    \"chargeEmailOptions\": \"Custom Charge, Standard Charge\",\n    \"readyEmailOptions\": \"Standard Ready\",\n    \"declinedEmailOptions\": \"Standard Declined\",\n    \"disclosureFormSetOptions\": \"Employment Disclosures, Tenant Disclosures, Volunteer Disclosures\"\n}"}],"_postman_id":"82bd3bb3-3c1f-4753-8075-3823803ec367"},{"name":"QuickApp (Legacy)","id":"80beeb3c-d015-43ec-a19d-d92bf3e3a478","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"daysEmailActive\": 14,\n    \"processInstantly\": true,\n    \"chargeOrderTo\": \"APPLICANT\",\n    \"reserveAmount\": 56.78,\n    \"alternateFromAddress\": \"api-sandbox@tazworks.com\",\n    \"alternateClientName\": \"Lem Knuckles\",\n    \"enableConsentIdVerification\": false,\n    \"consentIdSuccessCharge\": null,\n    \"consentIdFailureCharge\": null,\n    \"manualApplication\": null,\n    \"notificationEmail\": \"Employment\",\n    \"confirmationEmail\": \"Tenant\",\n    \"reminderEmail\": \"Standard Reminder\",\n    \"chargeEmail\": \"Standard Charge\",\n    \"readyEmail\": \"Standard Ready\",\n    \"declinedEmail\": \"Standard Declined\",\n    \"disclosureFormSet\": \"Tenant Disclosures\",\n    \"californiaCreditDisclosure\": \"CONFIDENTIAL_INFO\",\n    \"allowCodeOverride\": true,\n    \"notifyFromAddress\": \"api-sandbox@tazworks.com\",\n    \"notifyAlternate\": true\n}","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients/{{client-guid}}/products/{{client-product-guid}}/quickapp/legacy","description":"<p><strong>Client API</strong></p>\n<p>Enable or update the legacy QuickApp settings for a client product.  Use the <strong>QuickApp Emails/Disclosures (Legacy)</strong> endpoint to see the valid values for these fields.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>QuickApp Emails</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>notificationEmail</code></td>\n<td>This notifies the applicant of the request to fill out their information.</td>\n</tr>\n<tr>\n<td><code>confirmationEmail</code></td>\n<td>This notifies the applicant that their information was received by the system and gives them a confirmation number.</td>\n</tr>\n<tr>\n<td><code>reminderEmail</code></td>\n<td>If the applicant has not yet filled out their information, you can send a reminder email.  This will resend every 24 hours while active.</td>\n</tr>\n<tr>\n<td><code>chargeEmail</code></td>\n<td>Depending who you have selected in the <code>chargeOrderTo</code>, an email summarizing the charge will be sent after the QuickApp is completed.</td>\n</tr>\n<tr>\n<td><code>readyEmail</code></td>\n<td>This informs the person who originally created the QuickApp request that the applicant has responded to the online questionnaire, and the report is pending.</td>\n</tr>\n<tr>\n<td><code>declinedEmail</code></td>\n<td>This will inform the person who originally created the QuickApp request that the applicant has declined to fill out their information.</td>\n</tr>\n</tbody>\n</table>\n</div><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>QuickApp Disclosures</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>disclosureFormSet</code></td>\n<td>There are default sets in the system (Employment, Volunteer, Tenant, etc.)  They have the standard forms in them.  You can custom make your own disclosure sets for a fee.</td>\n</tr>\n</tbody>\n</table>\n</div><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>daysEmailActive</strong> <em>required, integer</em></td>\n<td>Specifies how many days the applicant has to respond before the notification expires.</td>\n</tr>\n<tr>\n<td><strong>processInstantly</strong> <em>boolean</em></td>\n<td>Set to true to process almost instantly.  Missing information will cause the QuickApp search to go to the Applicant Ready Queue.  If no information is missing, it will process and create a reports results page.  If this is set to false, it will go to the Applicant Ready Queue for the processor to push through. This defaults to false.</td>\n</tr>\n<tr>\n<td><strong>chargeOrderTo</strong> <em>string</em></td>\n<td>Options are <em>CLIENT</em> or <em>APPLICANT</em>.  Choose whether the client should be charged, or if the client wants the applicant to pay for the background check.</td>\n</tr>\n<tr>\n<td><strong>reserveAmount</strong> <em>double</em></td>\n<td>Dollar amount to pre-authorize on the applicant-provided credit card if the applicant is being charged.  The amount should be more than or equal to the total order charge.</td>\n</tr>\n<tr>\n<td><strong>alternateFromAddress</strong> <em>string</em></td>\n<td>This email address can override the email address the QuickApp invitation is sent from and pre-populate it with something entered in this section.</td>\n</tr>\n<tr>\n<td><strong>alternateClientName</strong> <em>string</em></td>\n<td>This can replace the name of the client placing the order.  The applicant will see this name to contact throughout the application process.</td>\n</tr>\n<tr>\n<td><strong>enableConsentIdVerification</strong> <em>boolean</em></td>\n<td>Set to true to enable consent ID verification.</td>\n</tr>\n<tr>\n<td><strong>consentIdSuccessCharge</strong> <em>double</em></td>\n<td>Charge amount for consent ID verification success.</td>\n</tr>\n<tr>\n<td><strong>consentIdFailureCharge</strong> <em>double</em></td>\n<td>Charge amount for consent ID verification failures.</td>\n</tr>\n<tr>\n<td><strong>manualApplication</strong> <em>string</em></td>\n<td>Specify the manual application.</td>\n</tr>\n<tr>\n<td><strong>notificationEmail</strong> <em>required, string</em></td>\n<td>Name of the notification email to use.</td>\n</tr>\n<tr>\n<td><strong>confirmationEmail</strong> <em>required, string</em></td>\n<td>Name of the confirmation email to use.</td>\n</tr>\n<tr>\n<td><strong>reminderEmail</strong> <em>required, string</em></td>\n<td>Name of the reminder email to use.</td>\n</tr>\n<tr>\n<td><strong>chargeEmail</strong> <em>required, string</em></td>\n<td>Name of the charge email to use.</td>\n</tr>\n<tr>\n<td><strong>readyEmail</strong> <em>string</em></td>\n<td>Name of the ready email to use.</td>\n</tr>\n<tr>\n<td><strong>declinedEmail</strong> <em>string</em></td>\n<td>Name of the declined email to use.</td>\n</tr>\n<tr>\n<td><strong>disclosureFormSet</strong> <em>required, string</em></td>\n<td>Name of the disclosure form set to use.</td>\n</tr>\n<tr>\n<td><strong>californiaCreditDisclosure</strong> <em>string</em></td>\n<td>If you have made a credit check available to order, you can choose which California disclosure text (reason or position) you want to display in the Notice Regarding Credit Checks section.  This section will not display in the disclosures if you have not included credit in the product package.</td>\n</tr>\n<tr>\n<td><strong>allowCodeOverride</strong> <em>boolean</em></td>\n<td>Set to true to allow the client placing the order to alter the reason or position that will be shown to the applicant for the California credit disclosure. This defaults to false.</td>\n</tr>\n<tr>\n<td><strong>notifyFromAddress</strong> <em>string</em></td>\n<td>You can specify an additional person to be notified with a Ready email when the applicant is finished.  This will override the requestor if filled out, unless using <code>notifyAlternate</code> too.</td>\n</tr>\n<tr>\n<td><strong>notifyAlternate</strong> <em>boolean</em></td>\n<td>A Ready email will be sent to the alternate email address and also the requestor at order time. This defaults to false.</td>\n</tr>\n</tbody>\n</table>\n</div><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>CA Credit Disclosure Options</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>DEPT_OF_JUSTICE</td>\n<td>State Department of Justice</td>\n</tr>\n<tr>\n<td>LAW_ENFORCEMENT</td>\n<td>Law Enforcement</td>\n</tr>\n<tr>\n<td>FINANCIAL_TRANSACTION</td>\n<td>Financial Transactions</td>\n</tr>\n<tr>\n<td>REQUIRED_BY_LAW</td>\n<td>Required by Law</td>\n</tr>\n<tr>\n<td>CONFIDENTIAL_INFO</td>\n<td>Confidential Information</td>\n</tr>\n<tr>\n<td>ACCESS_TO_PII</td>\n<td>Access to PII</td>\n</tr>\n<tr>\n<td>ACCESS_TO_CASH</td>\n<td>Access to 10k+ Cash</td>\n</tr>\n<tr>\n<td>EXECUTIVE_EXEMPTION</td>\n<td>Executive Exemption</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}","products","{{client-product-guid}}","quickapp","legacy"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"d2957b33-57fa-46fc-893b-11a99a89b505","name":"QuickApp (Legacy)","originalRequest":{"method":"PUT","header":[{"key":"Authorization","type":"text","value":"Bearer {{jwt-token}}"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"daysEmailActive\": 14,\n    \"processInstantly\": true,\n    \"chargeOrderTo\": \"APPLICANT\",\n    \"reserveAmount\": 56.78,\n    \"alternateFromAddress\": \"api-sandbox@tazworks.com\",\n    \"alternateClientName\": \"Lem Knuckles\",\n    \"enableConsentIdVerification\": false,\n    \"consentIdSuccessCharge\": null,\n    \"consentIdFailureCharge\": null,\n    \"manualApplication\": null,\n    \"notificationEmail\": \"Employment\",\n    \"confirmationEmail\": \"Tenant\",\n    \"reminderEmail\": \"Standard Reminder\",\n    \"chargeEmail\": \"Standard Charge\",\n    \"readyEmail\": \"Standard Ready\",\n    \"declinedEmail\": \"Standard Declined\",\n    \"disclosureFormSet\": \"Tenant Disclosures\",\n    \"californiaCreditDisclosure\": \"CONFIDENTIAL_INFO\",\n    \"allowCodeOverride\": true,\n    \"notifyFromAddress\": \"api-sandbox@tazworks.com\",\n    \"notifyAlternate\": true\n}","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients/{{client-guid}}/products/{{client-product-guid}}/quickapp/legacy"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"daysEmailActive\": 14,\n    \"processInstantly\": true,\n    \"chargeOrderTo\": \"APPLICANT\",\n    \"reserveAmount\": 56.78,\n    \"alternateFromAddress\": \"api-sandbox@tazworks.com\",\n    \"alternateClientName\": \"Lem Knuckles\",\n    \"enableConsentIdVerification\": false,\n    \"notificationEmail\": \"Employment\",\n    \"confirmationEmail\": \"Tenant\",\n    \"reminderEmail\": \"Standard Reminder\",\n    \"chargeEmail\": \"Standard Charge\",\n    \"readyEmail\": \"Standard Ready\",\n    \"declinedEmail\": \"Standard Declined\",\n    \"disclosureFormSet\": \"Tenant Disclosures\",\n    \"californiaCreditDisclosure\": \"CONFIDENTIAL_INFO\",\n    \"allowCodeOverride\": true,\n    \"notifyFromAddress\": \"api-sandbox@tazworks.com\",\n    \"notifyAlternate\": true\n}"}],"_postman_id":"80beeb3c-d015-43ec-a19d-d92bf3e3a478"},{"name":"QuickApp (Legacy)","id":"2bfaa991-e95b-4142-87a3-4f8c2ddf2b7d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/products/{{client-product-guid}}/quickapp/legacy","description":"<p><strong>Client API</strong></p>\n<p>Get the legacy QuickApp settings for a client product.</p>\n<p>See <strong>PUT QuickApp (Legacy)</strong> for field descriptions.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}","products","{{client-product-guid}}","quickapp","legacy"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"baba64a6-ef42-48cb-86cd-243b81759e39","name":"QuickApp (Legacy)","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{jwt-token}}"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/products/{{client-product-guid}}/quickapp/legacy"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"daysEmailActive\": 14,\n    \"processInstantly\": true,\n    \"chargeOrderTo\": \"APPLICANT\",\n    \"reserveAmount\": 56.78,\n    \"alternateFromAddress\": \"api-sandbox@tazworks.com\",\n    \"alternateClientName\": \"Lem Knuckles\",\n    \"enableConsentIdVerification\": false,\n    \"notificationEmail\": \"Employment\",\n    \"confirmationEmail\": \"Tenant\",\n    \"reminderEmail\": \"Standard Reminder\",\n    \"chargeEmail\": \"Standard Charge\",\n    \"readyEmail\": \"Standard Ready\",\n    \"declinedEmail\": \"Standard Declined\",\n    \"disclosureFormSet\": \"Tenant Disclosures\",\n    \"californiaCreditDisclosure\": \"CONFIDENTIAL_INFO\",\n    \"allowCodeOverride\": true,\n    \"notifyFromAddress\": \"api-sandbox@tazworks.com\",\n    \"notifyAlternate\": true\n}"},{"id":"c02c1b81-18b3-4d72-82c8-095d56b11998","name":"QuickApp (Legacy) - Not Enabled","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{jwt-token}}"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/products/{{client-product-guid}}/quickapp/legacy"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"code\": \"RESOURCE_NOT_FOUND\",\n    \"message\": \"QuickApp is not enabled for this client product.\"\n}"},{"id":"1a4316c5-deba-4d66-bde5-af576fff3b7a","name":"Wrong QuickApp Type","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{jwt-token}}"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/products/{{client-product-guid}}/quickapp/legacy"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"code\": \"RESOURCE_NOT_FOUND\",\n    \"message\": \"This client product uses Advanced QuickApp settings.  Use the endpoint for Advanced QuickApp.\"\n}"}],"_postman_id":"2bfaa991-e95b-4142-87a3-4f8c2ddf2b7d"},{"name":"QuickApp Email Sets (Advanced)","id":"bd4a064d-62ab-4a38-b311-99c4ec08b82d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/products/quickapp/emailsets","description":"<p><strong>Client API</strong></p>\n<p>Get a list of the valid values for the various QuickApp email sets that can be used for advanced QuickApp.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}","products","quickapp","emailsets"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"6b5a7496-c222-41b8-993b-0f8475d7a8d9","name":"QuickApp Email Sets (Advanced)","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{jwt-token}}"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/products/quickapp/emailsets"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"name\": \"First Message Set\",\n        \"guid\": \"27353477-6a34-425b-920f-581657e7775e\"\n    },\n    {\n        \"name\": \"Second Message Set\",\n        \"guid\": \"f5bb7ccb-4cb3-40e7-8e21-d89840792e3c\"\n    }\n]"}],"_postman_id":"bd4a064d-62ab-4a38-b311-99c4ec08b82d"},{"name":"QuickApp Form Sets (Advanced)","id":"bb43cab7-295e-4090-bd2d-58c283337cba","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/products/quickapp/formsets","description":"<p><strong>Client API</strong></p>\n<p>Get a list of the valid values for the various QuickApp form sets that can be used for advanced QuickApp.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}","products","quickapp","formsets"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"37121007-2c43-4fc6-b504-ba75d65608d2","name":"QuickApp Form Sets (Advanced)","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{jwt-token}}"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/products/quickapp/formsets"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"name\": \"First Form Set\",\n        \"guid\": \"13b43a0b-ddf7-48b8-9623-da68086d1c0c\"\n    },\n    {\n        \"name\": \"Second Form Set\",\n        \"guid\": \"b3744c06-46d2-4925-a4b9-40364ae0ffe8\"\n    }\n]"}],"_postman_id":"bb43cab7-295e-4090-bd2d-58c283337cba"},{"name":"QuickApp (Advanced)","id":"fd93eec2-3636-4411-af0d-d1aa0ae49741","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"daysEmailActive\": 6,\n    \"processInstantly\": false,\n    \"chargeOrderTo\": \"APPLICANT\",\n    \"reserveAmount\": 24.50,\n    \"alternateFromAddress\": \"api-sandbox@tazworks.com\",\n    \"alternateClientName\": \"Sam Smith\",\n    \"enableConsentIdVerification\": true,\n    \"consentIdSuccessCharge\": 5.50,\n    \"consentIdFailureCharge\": 2.20,\n    \"emailSetGuid\": \"27353477-6a34-425b-920f-581657e7775e\",\n    \"formSetGuid\": \"b3744c06-46d2-4925-a4b9-40364ae0ffe8\",\n    \"readyAlertContent\": null,\n    \"optOutAlertContent\": null,\n    \"alertRequestor\": true,\n    \"alertSpecifiedEmailAddress\": \"api-sandbox@tazworks.com\"\n}","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients/{{client-guid}}/products/{{client-product-guid}}/quickapp/advanced","description":"<p><strong>Client API</strong></p>\n<p>Enable or update the advanced QuickApp settings for a client product.  Use the <strong>QuickApp Email Sets (Advanced)</strong> and <strong>QuickApp Form Sets (Advanced)</strong> endpoints to see the valid values for these fields.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>daysEmailActive</strong> <em>required, integer</em></td>\n<td>Specifies how many days the applicant has to respond before the notification expires.</td>\n</tr>\n<tr>\n<td><strong>processInstantly</strong> <em>boolean</em></td>\n<td>Set to true to process almost instantly.  Missing information will cause the QuickApp search to go to the Applicant Ready Queue.  If no information is missing, it will process and create a reports results page.  If this is set to false, it will go to the Applicant Ready Queue for the processor to push through. This defaults to false.</td>\n</tr>\n<tr>\n<td><strong>chargeOrderTo</strong> <em>string</em></td>\n<td>Options are <em>CLIENT</em> or <em>APPLICANT</em>.  Choose whether the client should be charged, or if the client wants the applicant to pay for the background check.</td>\n</tr>\n<tr>\n<td><strong>reserveAmount</strong> <em>double</em></td>\n<td>Dollar amount to pre-authorize on the applicant-provided credit card if the applicant is being charged.  The amount should be more than or equal to the total order charge.</td>\n</tr>\n<tr>\n<td><strong>alternateFromAddress</strong> <em>string</em></td>\n<td>This email address can override the email address the QuickApp invitation is sent from and pre-populate it with something entered in this section.</td>\n</tr>\n<tr>\n<td><strong>alternateClientName</strong> <em>string</em></td>\n<td>This can replace the name of the client placing the order.  The applicant will see this name to contact throughout the application process.</td>\n</tr>\n<tr>\n<td><strong>enableConsentIdVerification</strong> <em>boolean</em></td>\n<td>Set to true to enable consent ID verification.</td>\n</tr>\n<tr>\n<td><strong>consentIdSuccessCharge</strong> <em>double</em></td>\n<td>Charge amount for consent ID verification success.</td>\n</tr>\n<tr>\n<td><strong>consentIdFailureCharge</strong> <em>double</em></td>\n<td>Charge amount for consent ID verification failures.</td>\n</tr>\n<tr>\n<td><strong>emailSetGuid</strong> <em>uuid</em></td>\n<td>The identifier for the email set to use.</td>\n</tr>\n<tr>\n<td><strong>formSetGuid</strong> <em>uuid</em></td>\n<td>The identifier for the form set to use.</td>\n</tr>\n<tr>\n<td><strong>readyAlertContent</strong> <em>string</em></td>\n<td>Name of the ready email to use.</td>\n</tr>\n<tr>\n<td><strong>optOutAlertContent</strong> <em>string</em></td>\n<td>Name of the declined email to use.</td>\n</tr>\n<tr>\n<td><strong>alertRequestor</strong> <em>boolean</em></td>\n<td>A Ready email will be sent to the alternate email address and also the requestor at order time. This defaults to false.</td>\n</tr>\n<tr>\n<td><strong>alertSpecifiedEmailAddress</strong> <em>string</em></td>\n<td>The email address to use when alerting the requestor.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}","products","{{client-product-guid}}","quickapp","advanced"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"c969de2d-081b-4f02-bf69-40c0da3a86ad","name":"QuickApp (Advanced)","originalRequest":{"method":"PUT","header":[{"key":"Authorization","type":"text","value":"Bearer {{jwt-token}}"},{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"daysEmailActive\": 6,\n    \"processInstantly\": false,\n    \"chargeOrderTo\": \"APPLICANT\",\n    \"reserveAmount\": 24.50,\n    \"alternateFromAddress\": \"api-sandbox@tazworks.com\",\n    \"alternateClientName\": \"Sam Smith\",\n    \"enableConsentIdVerification\": true,\n    \"consentIdSuccessCharge\": 5.50,\n    \"consentIdFailureCharge\": 2.20,\n    \"emailSetGuid\": \"27353477-6a34-425b-920f-581657e7775e\",\n    \"formSetGuid\": \"b3744c06-46d2-4925-a4b9-40364ae0ffe8\",\n    \"readyAlertContent\": null,\n    \"optOutAlertContent\": null,\n    \"alertRequestor\": true,\n    \"alertSpecifiedEmailAddress\": \"api-sandbox@tazworks.com\"\n}","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients/{{client-guid}}/products/{{client-product-guid}}/quickapp/advanced"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"daysEmailActive\": 6,\n    \"processInstantly\": false,\n    \"chargeOrderTo\": \"APPLICANT\",\n    \"reserveAmount\": 24.5,\n    \"alternateFromAddress\": \"api-sandbox@tazworks.com\",\n    \"alternateClientName\": \"Sam Smith\",\n    \"enableConsentIdVerification\": true,\n    \"consentIdSuccessCharge\": 5.5,\n    \"consentIdFailureCharge\": 2.2,\n    \"emailSetGuid\": \"27353477-6a34-425b-920f-581657e7775e\",\n    \"formSetGuid\": \"b3744c06-46d2-4925-a4b9-40364ae0ffe8\",\n    \"alertRequestor\": true,\n    \"alertSpecifiedEmailAddress\": \"api-sandbox@tazworks.com\"\n}"}],"_postman_id":"fd93eec2-3636-4411-af0d-d1aa0ae49741"},{"name":"QuickApp (Advanced)","id":"eefd0e82-4c1c-47d3-a09e-520078d45300","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/products/{{client-product-guid}}/quickapp/advanced","description":"<p><strong>Client API</strong></p>\n<p>Get the advanced QuickApp settings for a client product.</p>\n<p>See <strong>PUT QuickApp (Advanced)</strong> for field descriptions.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}","products","{{client-product-guid}}","quickapp","advanced"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"4749e4fa-b4fd-4d73-8f92-c34e1eb28388","name":"QuickApp (Advanced) - Not Enabled","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{jwt-token}}"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/products/{{client-product-guid}}/quickapp/advanced"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"code\": \"RESOURCE_NOT_FOUND\",\n    \"message\": \"QuickApp is not enabled for this client product.\"\n}"},{"id":"a927cd41-d1d0-4da4-8da5-88e234672275","name":"QuickApp (Advanced)","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{jwt-token}}"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/products/{{client-product-guid}}/quickapp/advanced"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"daysEmailActive\": 6,\n    \"processInstantly\": false,\n    \"chargeOrderTo\": \"APPLICANT\",\n    \"reserveAmount\": 24.5,\n    \"alternateFromAddress\": \"api-sandbox@tazworks.com\",\n    \"alternateClientName\": \"Sam Smith\",\n    \"enableConsentIdVerification\": true,\n    \"consentIdSuccessCharge\": 5.5,\n    \"consentIdFailureCharge\": 2.2,\n    \"emailSetGuid\": \"27353477-6a34-425b-920f-581657e7775e\",\n    \"formSetGuid\": \"b3744c06-46d2-4925-a4b9-40364ae0ffe8\",\n    \"alertRequestor\": true,\n    \"alertSpecifiedEmailAddress\": \"api-sandbox@tazworks.com\"\n}"},{"id":"27ef484f-2fdf-4f52-975f-c807e7102f22","name":"Wrong QuickApp Type","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{jwt-token}}"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/products/{{client-product-guid}}/quickapp/advanced"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"code\": \"RESOURCE_NOT_FOUND\",\n    \"message\": \"This client product uses Legacy QuickApp settings.  Use the endpoint for Legacy QuickApp.\"\n}"}],"_postman_id":"eefd0e82-4c1c-47d3-a09e-520078d45300"},{"name":"Disable QuickApp","id":"ba1f88b3-82c5-4c1c-ab69-936deff3d241","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/products/{{client-product-guid}}/quickapp","description":"<p><strong>Client API</strong></p>\n<p>Disable QuickApp for a client product.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}","products","{{client-product-guid}}","quickapp"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"a7517659-1607-4d25-ada9-2d79e48e7a08","name":"QuickApp (Legacy)","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{jwt-token}}"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/products/{{client-product-guid}}/quickapp"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"\"QuickApp has been disabled for this client product.\""}],"_postman_id":"ba1f88b3-82c5-4c1c-ab69-936deff3d241"},{"name":"Collection Site Networks","id":"17a40b89-7741-46a6-9c9d-14340509321a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/products/collection/networks","description":"<p><strong>Client API</strong></p>\n<p>List the valid collection site networks that are used in the <code>occupationalHealth</code> section for a client product.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}","products","collection","networks"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"0c4c5b05-5cf0-41bf-9272-97ef6ea596cf","name":"Collection Site Networks","originalRequest":{"method":"GET","header":[],"url":"https://{{host}}/v1/clients/{{client-guid}}/products/collection/networks"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"key\": \"external\",\n        \"value\": \"Manual (Use Vendor Routing)\",\n        \"id\": \"external\"\n    },\n    {\n        \"key\": \"E_SCREEN\",\n        \"value\": \"eScreen\",\n        \"id\": \"E_SCREEN\"\n    },\n    {\n        \"key\": \"LABCORP\",\n        \"value\": \"LabCorp\",\n        \"id\": \"LABCORP\"\n    },\n    {\n        \"key\": \"QUEST\",\n        \"value\": \"Quest\",\n        \"id\": \"QUEST\"\n    },\n    {\n        \"key\": \"I3SCREEN\",\n        \"value\": \"i3screen\",\n        \"id\": \"I3SCREEN\"\n    }\n]"}],"_postman_id":"17a40b89-7741-46a6-9c9d-14340509321a"}],"id":"e5d25a7b-4ee6-4dd4-bf50-3b30b2c3ea94","description":"<p>Endpoints allowing you to create, update, and delete client products.</p>\n","event":[{"listen":"prerequest","script":{"id":"b08420be-da24-46c4-82b9-3f329056bc95","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"51fc7769-7f2a-4733-859d-8476a598bb67","type":"text/javascript","exec":[""]}}],"_postman_id":"e5d25a7b-4ee6-4dd4-bf50-3b30b2c3ea94","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}}},{"name":"Create Client","event":[{"listen":"test","script":{"id":"ed29f1d0-cc42-4fef-89a0-ed2a32367ac7","exec":[""],"type":"text/javascript"}}],"id":"7a5f2b7f-4598-40d6-8b80-44b6f216d617","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"clientGuid\": null,\n    \"name\": \"New Client\",\n    \"parentGuid\": null,\n    \"inquiryName\": \"New Client\",\n    \"substituteEndUser\": false,\n    \"code\": \"NEW-01\",\n    \"contact\": {\n        \"name\": \"Mike\",\n        \"email\": \"api-sandbox@tazworks.com\",\n        \"phone\": \"(555) 555-1026\",\n        \"phoneExtension\": \"123\",\n        \"phoneAlternate\": null,\n        \"phoneAlternateExtension\": null\n    },\n    \"fax\": null,\n    \"faxInstructions\": null,\n    \"owner\": {\n        \"name\": \"John Jones\",\n        \"email\": \"api-sandbox@tazworks.com\",\n        \"phone\": null,\n        \"phoneExtension\": null\n    },\n    \"status\": \"ACTIVE\",\n    \"disabledReason\": null,\n    \"disabledMessage\": null,\n    \"physicalAddress\": {\n        \"streetOne\": \"Center Street\",\n        \"streetTwo\": null,\n        \"city\": \"Denver\",\n        \"state\": \"CO\",\n        \"zipCode\": \"80204\",\n        \"country\": \"US\"\n    },\n    \"billingAddress\": {\n        \"streetOne\": \"Suite 101\",\n        \"streetTwo\": null,\n        \"city\": \"Billings\",\n        \"state\": \"MT\",\n        \"zipCode\": \"59101\",\n        \"country\": \"US\"\n    },\n    \"billingAddressSameAsPhysical\": false,\n    \"addressCareOf\": null,\n    \"displayInstructions\": false,\n    \"instructions\": null,\n    \"notes\": null,\n    \"preferredDomain\": null,\n    \"doNotApplyPreferredUrlToInvoice\": true,\n    \"copyFromClientGuid\": {{copy-from-client-guid}},\n    \"copySections\": [\"PREFERENCES\",\"PRODUCTS\"]\n}"},"url":"https://{{host}}/v1/clients","description":"<p><strong>Client API</strong></p>\n<p>Create a new client.</p>\n<p>The system has the ability to create parent and child relationships or corporate and sub-corporate entities. Specify the <code>parentGuid</code> in order to make this client a child or sub-corporate entity.</p>\n<p>If the client's billing address will be the same as their physical address, set the <code>billingAddress</code> to null and set the <code>billingAddressSameAsPhysical</code> to true. Physical and billing addresses currently must be in the US or Canada.</p>\n<p>If you want to create a new client by copying some information from an existing client, set the <code>copyFromClientGuid</code> and define the <code>copySections</code> for which information you would like copied over. You may copy product, preference, fee, billing and disclosure information.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>clientGuid</strong> <em>uuid</em></td>\n<td>Identifier for the client record.</td>\n</tr>\n<tr>\n<td><strong>name</strong> <em>required, string</em></td>\n<td>Client name.</td>\n</tr>\n<tr>\n<td><strong>parentGuid</strong> <em>uuid</em></td>\n<td>Specify the <code>parentGuid</code> in order to make this client a child or sub-corporate entity.</td>\n</tr>\n<tr>\n<td><strong>inquiryName</strong> <em>required, string</em></td>\n<td>The name that is submitted to the credit bureau when ordering a credit report.</td>\n</tr>\n<tr>\n<td><strong>substituteEndUser</strong> <em>boolean</em></td>\n<td>Set to true to allow defining the end user at order time. This defaults to false.</td>\n</tr>\n<tr>\n<td><strong>code</strong> <em>required, string</em></td>\n<td>The client <code>code</code> is a client identifier, or short name for a client, and must be unique.</td>\n</tr>\n<tr>\n<td><strong>contact</strong> <em>required,</em> <code>_contact_</code> <em>object</em></td>\n<td>The <code>contact</code> is the information for the primary contact at the client's company.</td>\n</tr>\n<tr>\n<td><strong>fax</strong> <em>string</em></td>\n<td>Fax number for the client. The number should follow a <code>(###) ###-####</code> format.</td>\n</tr>\n<tr>\n<td><strong>faxInstructions</strong> <em>string</em></td>\n<td>Fax instructions.</td>\n</tr>\n<tr>\n<td><strong>owner</strong> <code>_owner_</code> <em>object</em></td>\n<td>Client owner information.</td>\n</tr>\n<tr>\n<td><strong>status</strong> <em>required, string</em></td>\n<td><code>status</code> can be <em>ACTIVE</em> or <em>DISABLED</em>. Active clients and their users can log into the system. If a client is disabled, then all users under that client are disabled from logging into the system.</td>\n</tr>\n<tr>\n<td><strong>disabledReason</strong> <em>string</em></td>\n<td>You can specify the reason the client is disabled. This is for internal use only, and will not be seen by the client.</td>\n</tr>\n<tr>\n<td><strong>disabledMessage</strong> <em>string</em></td>\n<td>You can specify the message which will be displayed to the client user when they attempt to login to a disabled client.</td>\n</tr>\n<tr>\n<td><strong>physicalAddress</strong> <em>required,</em> <code>_address_</code> <em>object</em></td>\n<td>The physical address for the client.</td>\n</tr>\n<tr>\n<td><strong>billingAddress</strong> <code>_address_</code> <em>object</em></td>\n<td>The billing address for the client.</td>\n</tr>\n<tr>\n<td><strong>billingAddressSameAsPhysical</strong> <em>boolean</em></td>\n<td>Set to true if the billing address is the same as the physical address. This defaults to false.</td>\n</tr>\n<tr>\n<td><strong>addressCareOf</strong> <em>string</em></td>\n<td>Client address care of.</td>\n</tr>\n<tr>\n<td><strong>displayInstructions</strong> <em>boolean</em></td>\n<td>Set to true to display the <code>instructions</code> when the order is placed. This defaults to false.</td>\n</tr>\n<tr>\n<td><strong>instructions</strong> <em>string</em></td>\n<td>The instructions to display.</td>\n</tr>\n<tr>\n<td><strong>notes</strong> <em>string</em></td>\n<td>Internal notes on the client.</td>\n</tr>\n<tr>\n<td><strong>preferredDomain</strong> <em>string</em></td>\n<td>Data associated with the <code>preferredDomain</code> will be displayed in place of the CRA data for reports (including California disclosure), verification letters, emails, disclaimers, and some invoices. The domain must have been previously defined within the system.</td>\n</tr>\n<tr>\n<td><strong>doNotApplyPreferredUrlToInvoice</strong> <em>boolean</em></td>\n<td>Set to true, then the data associated with the <code>preferredDomain</code> will not be displayed on invoices. Instead, the CRA information will be displayed. This defaults to false.</td>\n</tr>\n<tr>\n<td><strong>copyFromClientGuid</strong> <em>string</em></td>\n<td>If you want to create a new client by copying some information from an existing client, set the <code>copyFromClientGuid</code> to the UUID identifier for the client to copy from and define the <code>copySections</code>.</td>\n</tr>\n<tr>\n<td><strong>copySections</strong> <em>collection, string</em></td>\n<td>Specify which sections you want to copy from the existing client. Valid values are <em>PRODUCTS</em>, <em>PREFERENCES</em>, <em>FEES</em>, <em>BILLING</em>, and <em>DISCLOSURES</em>.</td>\n</tr>\n</tbody>\n</table>\n</div><p>Read Only Fields</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>createdDate</strong> <em>date (long)</em></td>\n<td>The epoch date that the record was created.</td>\n</tr>\n<tr>\n<td><strong>createdBy</strong> <em>string</em></td>\n<td>The user who created the record.</td>\n</tr>\n<tr>\n<td><strong>modifiedDate</strong> <em>date (long)</em></td>\n<td>The epoch date that the record was last modified.</td>\n</tr>\n<tr>\n<td><strong>modifiedBy</strong> <em>string</em></td>\n<td>The user who last modified the record.</td>\n</tr>\n</tbody>\n</table>\n</div><p><code>contact</code> object</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>name</strong> <em>required, string</em></td>\n<td>Full name of contact.</td>\n</tr>\n<tr>\n<td><strong>email</strong> <em>string</em></td>\n<td>Contact email. This needs to be a valid email format.</td>\n</tr>\n<tr>\n<td><strong>phone</strong> <em>string</em></td>\n<td>The phone number for the contact. The number should follow a <code>(###) ###-####</code> format.</td>\n</tr>\n<tr>\n<td><strong>phoneExtension</strong> <em>string</em></td>\n<td>The phone number extension. This can be preceeded by an 'x' (i.e. \"1234\", \"x1234\").</td>\n</tr>\n<tr>\n<td><strong>phoneAlternate</strong> <em>string</em></td>\n<td>The alternate phone number for the contact. The number should follow a <code>(###) ###-####</code> format.</td>\n</tr>\n<tr>\n<td><strong>phoneAlternateExtension</strong> <em>string</em></td>\n<td>The alternate phone number extension. This can be preceeded by an 'x' (i.e. \"1234\", \"x1234\").</td>\n</tr>\n</tbody>\n</table>\n</div><p><code>owner</code> object</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>name</strong> <em>required, string*</em></td>\n<td>Full name of owner.</td>\n</tr>\n<tr>\n<td><strong>email</strong> <em>string</em></td>\n<td>Owner email. This needs to be a valid email format.</td>\n</tr>\n<tr>\n<td><strong>phone</strong> <em>string</em></td>\n<td>The phone number for the owner. The number should follow a <code>(###) ###-####</code> format.</td>\n</tr>\n<tr>\n<td><strong>phoneExtension</strong> <em>string</em></td>\n<td>The phone number extension. This can be preceeded by an 'x' (i.e. \"1234\", \"x1234\").</td>\n</tr>\n</tbody>\n</table>\n</div><p><code>address</code> object</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>streetOne</strong> <em>required, string</em></td>\n<td>First line of street address.</td>\n</tr>\n<tr>\n<td><strong>streetTwo</strong> <em>string</em></td>\n<td>Second line of street address.</td>\n</tr>\n<tr>\n<td><strong>city</strong> <em>required, string</em></td>\n<td>City.</td>\n</tr>\n<tr>\n<td><strong>state</strong> <em>required, string</em></td>\n<td>Two-character state.</td>\n</tr>\n<tr>\n<td><strong>zipCode</strong> <em>required, string</em></td>\n<td>Zip code.</td>\n</tr>\n<tr>\n<td><strong>country</strong> <em>required, string</em></td>\n<td>ISO 3166 country code. See <strong>General -&gt; ISO Countries</strong> for a list of country codes.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"18e5aafd-02fa-4b33-86aa-36b2a1c70a2e","name":"Create Client","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"clientGuid\": null,\n    \"name\": \"Client\",\n    \"parentGuid\": null,\n    \"inquiryName\": \"Client\",\n    \"substituteEndUser\": false,\n    \"code\": \"cdenby\",\n    \"contact\": {\n        \"name\": \"Clive Bean II\",\n        \"email\": \"api-sandbox@tazworks.com\",\n        \"phone\": null,\n        \"phoneExtension\": null,\n        \"phoneAlternate\": null,\n        \"phoneAlternateExtension\": null\n    },\n    \"fax\": null,\n    \"faxInstructions\": null,\n    \"owner\": {\n        \"name\": \"Owner Joe\",\n        \"email\": \"api-sandbox@tazworks.com\",\n        \"phone\": null,\n        \"phoneExtension\": null\n    },\n    \"status\": \"ACTIVE\",\n    \"disabledReason\": null,\n    \"disabledMessage\": null,\n    \"physicalAddress\": {\n        \"streetOne\": \"800 S. 100 E\",\n        \"streetTwo\": \"Burns Str\",\n        \"city\": \"Denver\",\n        \"state\": \"CO\",\n        \"zipCode\": \"80204\",\n        \"country\": \"US\"\n    },\n    \"billingAddress\": {\n        \"streetOne\": \"Suite 101\",\n        \"streetTwo\": null,\n        \"city\": \"Billings\",\n        \"state\": \"MT\",\n        \"zipCode\": \"59101\",\n        \"country\": \"US\"\n    },\n    \"billingAddressSameAsPhysical\": false,\n    \"addressCareOf\": null,\n    \"displayInstructions\": true,\n    \"instructions\": \"<div>Yodles</div>\",\n    \"notes\": null,\n    \"preferredDomain\": \"localhost\",\n    \"doNotApplyPreferredUrlToInvoice\": false,\n    \"copyFromClientGuid\": null,\n    \"copySections\": null\n}","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"clientGuid\": \"f8cd0b5a-a8d8-4d7b-887a-06716eb9ca5d\",\n    \"name\": \"Client\",\n    \"inquiryName\": \"Client\",\n    \"substituteEndUser\": false,\n    \"createdDate\": 1544598000000,\n    \"createdBy\": \"Sally Foo\",\n    \"modifiedDate\": 1555543290000,\n    \"modifiedBy\": \"Sally Foo\",\n    \"code\": \"cdenby\",\n    \"contact\": {\n        \"name\": \"Clive Bean II\",\n        \"email\": \"api-sandbox@tazworks.com\"\n    },\n    \"owner\": {\n        \"name\": \"Owner Joe\",\n        \"email\": \"api-sandbox@tazworks.com\"\n    },\n    \"status\": \"ACTIVE\",\n    \"physicalAddress\": {\n        \"streetOne\": \"800 S. 100 E\",\n        \"streetTwo\": \"Burns Str\",\n        \"city\": \"Denver\",\n        \"state\": \"CO\",\n        \"zipCode\": \"80204\",\n        \"country\": \"US\"\n    },\n    \"billingAddress\": {\n        \"streetOne\": \"Suite 101\",\n        \"city\": \"Billings\",\n        \"state\": \"MT\",\n        \"zipCode\": \"59101\",\n        \"country\": \"US\"\n    },\n    \"billingAddressSameAsPhysical\": false,\n    \"displayInstructions\": true,\n    \"instructions\": \"<div>Yodles</div>\",\n    \"preferredDomain\": \"localhost\",\n    \"doNotApplyPreferredUrlToInvoice\": false\n}"},{"id":"6097f299-f096-461d-940f-ca4f595fd4d5","name":"Create Child Client","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"clientGuid\": null,\n    \"name\": \"Child Client\",\n    \"parentGuid\": \"226bd71c-0b12-4cfe-990a-a1a0659f81e0\",\n    \"inquiryName\": \"Child Client\",\n    \"substituteEndUser\": false,\n    \"code\": \"cdenby\",\n    \"contact\": {\n        \"name\": \"Clive Bean II\",\n        \"email\": \"api-sandbox@tazworks.com\",\n        \"phone\": null,\n        \"phoneExtension\": null,\n        \"phoneAlternate\": null,\n        \"phoneAlternateExtension\": null\n    },\n    \"fax\": \"(555) 123-1234\",\n    \"faxInstructions\": \"only fax it once\",\n    \"owner\": {\n        \"name\": \"Owner Joe\",\n        \"email\": \"api-sandbox@tazworks.com\",\n        \"phone\": null,\n        \"phoneExtension\": null\n    },\n    \"status\": \"ACTIVE\",\n    \"disabledReason\": null,\n    \"disabledMessage\": null,\n    \"physicalAddress\": {\n        \"streetOne\": \"800 S. 100 E\",\n        \"streetTwo\": \"Burns Str\",\n        \"city\": \"Denver\",\n        \"state\": \"CO\",\n        \"zipCode\": \"80204\",\n        \"country\": \"US\"\n    },\n    \"billingAddress\": {\n        \"streetOne\": \"Suite 101\",\n        \"streetTwo\": null,\n        \"city\": \"Billings\",\n        \"state\": \"MT\",\n        \"zipCode\": \"59101\",\n        \"country\": \"US\"\n    },\n    \"billingAddressSameAsPhysical\": false,\n    \"addressCareOf\": null,\n    \"displayInstructions\": true,\n    \"instructions\": \"<div>Yodles</div>\",\n    \"notes\": null,\n    \"preferredDomain\": \"localhost\",\n    \"doNotApplyPreferredUrlToInvoice\": false,\n    \"copyFromClientGuid\": null,\n    \"copySections\": null\n}","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"clientGuid\": \"f8cd0b5a-a8d8-4d7b-887a-06716eb9ca5d\",\n    \"name\": \"Child Client\",\n    \"parentGuid\": \"226bd71c-0b12-4cfe-990a-a1a0659f81e0\",\n    \"inquiryName\": \"Child Client\",\n    \"substituteEndUser\": false,\n    \"createdDate\": 1544598000000,\n    \"createdBy\": \"Sally Foo\",\n    \"modifiedDate\": 1555543290000,\n    \"modifiedBy\": \"Sally Foo\",\n    \"code\": \"cdenby\",\n    \"contact\": {\n        \"name\": \"Clive Bean II\",\n        \"email\": \"api-sandbox@tazworks.com\"\n    },\n    \"fax\": \"(555) 123-1234\",\n    \"faxInstructions\": \"only fax it once\",\n    \"owner\": {\n        \"name\": \"Owner Joe\",\n        \"email\": \"api-sandbox@tazworks.com\"\n    },\n    \"status\": \"ACTIVE\",\n    \"physicalAddress\": {\n        \"streetOne\": \"800 S. 100 E\",\n        \"streetTwo\": \"Burns Str\",\n        \"city\": \"Denver\",\n        \"state\": \"CO\",\n        \"zipCode\": \"80204\",\n        \"country\": \"US\"\n    },\n    \"billingAddress\": {\n        \"streetOne\": \"Suite 101\",\n        \"city\": \"Billings\",\n        \"state\": \"MT\",\n        \"zipCode\": \"59101\",\n        \"country\": \"US\"\n    },\n    \"billingAddressSameAsPhysical\": false,\n    \"displayInstructions\": true,\n    \"instructions\": \"<div>Yodles</div>\",\n    \"preferredDomain\": \"localhost\",\n    \"doNotApplyPreferredUrlToInvoice\": false\n}"}],"_postman_id":"7a5f2b7f-4598-40d6-8b80-44b6f216d617"},{"name":"Single Client","event":[{"listen":"test","script":{"id":"2fa0071d-2ec3-4495-b4a5-4a27189704ec","exec":[""],"type":"text/javascript"}}],"id":"17bb2219-f1e7-40a9-b68e-963a6540d23f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}","description":"<p><strong>Client API</strong></p>\n<p>Retrieve information about a client.</p>\n<p>See <strong>Create Client</strong> for field descriptions.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"2bcfa73e-77d2-4fc6-9ee5-aaf748bb38b9","name":"Single Client","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"clientGuid\": \"f8cd0b5a-a8d8-4d7b-887a-06716eb9ca5d\",\n    \"name\": \"Child Client\",\n    \"parentGuid\": \"226bd71c-0b12-4cfe-990a-a1a0659f81e0\",\n    \"inquiryName\": \"Child Client\",\n    \"substituteEndUser\": false,\n    \"createdDate\": 1544598000000,\n    \"createdBy\": \"Sally Foo\",\n    \"modifiedDate\": 1555543290000,\n    \"modifiedBy\": \"Sally Foo\",\n    \"code\": \"cdenby\",\n    \"contact\": {\n        \"name\": \"Clive Bean II\",\n        \"email\": \"api-sandbox@tazworks.com\"\n    },\n    \"owner\": {\n        \"name\": \"Owner Joe\",\n        \"email\": \"api-sandbox@tazworks.com\"\n    },\n    \"status\": \"ACTIVE\",\n    \"physicalAddress\": {\n        \"streetOne\": \"800 S. 100 E\",\n        \"streetTwo\": \"Burns Str\",\n        \"city\": \"Sandy\",\n        \"state\": \"UT\",\n        \"zipCode\": \"84092\"\n    },\n    \"billingAddressSameAsPhysical\": true,\n    \"displayInstructions\": true,\n    \"instructions\": \"<div>Yodles</div>\",\n    \"preferredDomain\": \"localhost\",\n    \"doNotApplyPreferredUrlToInvoice\": false\n}"}],"_postman_id":"17bb2219-f1e7-40a9-b68e-963a6540d23f"},{"name":"All Clients","event":[{"listen":"test","script":{"id":"501d6c65-4b7a-4458-bb13-85678d15801b","exec":[""],"type":"text/javascript","packages":{},"requests":{}}}],"id":"9f05c2fa-5dc3-4349-aa28-e417c8ce5579","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients?page=0&size=5","description":"<p><strong>Client API, Order API</strong></p>\n<p>Get a list of all your clients.  This will display top-level clients only.  Use <strong>Client Descendants</strong> to see the descendants (sub-clients) of a top-level client.</p>\n<p>See <strong>Create Client</strong> for field descriptions.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients"],"host":["{{host}}"],"query":[{"description":{"content":"<p>Specify the page to retrieve.  Defaults to 0.</p>\n","type":"text/plain"},"key":"page","value":"0"},{"description":{"content":"<p>Specify the number of records per page.  Defaults to 30.</p>\n","type":"text/plain"},"key":"size","value":"5"}],"variable":[]}},"response":[{"id":"a2c005bb-c47d-443f-8e31-a799f536f6ef","name":"All Clients","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{host}}/v1/clients?page=0&size=5","protocol":"https","host":["{{host}}"],"path":["v1","clients"],"query":[{"key":"page","value":"0"},{"key":"size","value":"5"}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"clientGuid\": \"c2d719b0-35ef-46fe-8413-927e436b9f82\",\n        \"name\": \"Client Foo\",\n        \"code\": \"01-AMB\",\n        \"status\": \"ACTIVE\",\n        \"contactName\": \"Duane Smith\",\n        \"contactEmail\": \"success@simulator.amazonses.com\",\n        \"createdDate\": 1167634800000,\n        \"createdBy\": \"Foo Connector Foo Integrator\",\n        \"modifiedDate\": 1571872058000,\n        \"modifiedBy\": \"Foo Connector Foo Integrator\"\n    },\n    {\n        \"clientGuid\": \"db1577d2-8519-4307-a3e5-ab3dedf578c3\",\n        \"name\": \"Api Client\",\n        \"code\": \"API-CLNT\",\n        \"status\": \"ACTIVE\",\n        \"contactName\": \"Foo Smith\",\n        \"contactEmail\": \"success@simulator.amazonses.com\",\n        \"createdDate\": 1556863200000,\n        \"createdBy\": \"Foo Connector Foo Integrator\",\n        \"modifiedDate\": 1571668674000,\n        \"modifiedBy\": \"Foo Connector Foo Integrator\"\n    }\n]"}],"_postman_id":"9f05c2fa-5dc3-4349-aa28-e417c8ce5579"},{"name":"Client Descendants","id":"7937a987-38a0-4217-8313-027843d4f12b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/descendants","description":"<p><strong>Client API, Order API</strong></p>\n<p>Get the downward hierarchy of a client (sub-clients).</p>\n","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}","descendants"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"9751321d-7f2f-443e-932f-4a9fded2331d","name":"Client Descendants","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/descendants"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"client\": {\n        \"clientGuid\": \"5b9740e2-84c3-4f84-96ea-435ebbbdbd24\",\n        \"name\": \"Serious Parent\",\n        \"code\": \"SERPAR\",\n        \"status\": \"ACTIVE\",\n        \"contactName\": \"Dan Smith\",\n        \"contactEmail\": \"success@simulator.amazonses.com\",\n        \"createdDate\": 1580367600000,\n        \"createdBy\": \"Foo User\",\n        \"modifiedDate\": 1580416221000,\n        \"modifiedBy\": \"Foo User\"\n    },\n    \"subClients\": [\n        {\n            \"client\": {\n                \"clientGuid\": \"032916bd-d734-472f-98e1-68f8b74180b6\",\n                \"name\": \"Serious Child\",\n                \"code\": \"SERCHLD\",\n                \"status\": \"ACTIVE\",\n                \"contactName\": \"Jane Doe\",\n                \"contactEmail\": \"success@simulator.amazonses.com\",\n                \"createdDate\": 1580367600000,\n                \"createdBy\": \"Foo User\",\n                \"modifiedDate\": 1580416282000,\n                \"modifiedBy\": \"Foo User\"\n            },\n            \"subClients\": [\n                {\n                    \"client\": {\n                        \"clientGuid\": \"b3326dd2-6eef-444f-8fb0-41df14c587fc\",\n                        \"name\": \"Serious Third Tier\",\n                        \"code\": \"THRDTIER\",\n                        \"status\": \"ACTIVE\",\n                        \"contactName\": \"JOHN\",\n                        \"contactEmail\": \"success@simulator.amazonses.com\",\n                        \"createdDate\": 1580454000000,\n                        \"createdBy\": \"Foo User\",\n                        \"modifiedDate\": 1580484705000,\n                        \"modifiedBy\": \"Foo User\"\n                    },\n                    \"subClients\": []\n                }\n            ]\n        },\n        {\n            \"client\": {\n                \"clientGuid\": \"2429baae-722a-47f2-8925-8ef6143ef244\",\n                \"name\": \"Serious Second Child\",\n                \"code\": \"SERSECCHL\",\n                \"status\": \"ACTIVE\",\n                \"contactName\": \"Fred\",\n                \"contactEmail\": \"success@simulator.amazonses.com\",\n                \"createdDate\": 1580454000000,\n                \"createdBy\": \"Foo User\",\n                \"modifiedDate\": 1580484632000,\n                \"modifiedBy\": \"Foo User\"\n            },\n            \"subClients\": []\n        }\n    ]\n}"}],"_postman_id":"7937a987-38a0-4217-8313-027843d4f12b"},{"name":"Client Ancestors","id":"25f377f0-d593-4859-8d3c-9308b925f75e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/ancestors","description":"<p><strong>Client API</strong></p>\n<p>Get the upward hierarchy of a client (parents).</p>\n","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}","ancestors"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"060504eb-c655-4934-8f5d-bfe9668d9308","name":"Client Ancestors","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}/ancestors"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"client\": {\n        \"clientGuid\": \"b3326dd2-6eef-444f-8fb0-41df14c587fc\",\n        \"name\": \"Serious Third Tier\",\n        \"code\": \"THRDTIER\",\n        \"status\": \"ACTIVE\",\n        \"contactName\": \"JOHN\",\n        \"contactEmail\": \"success@simulator.amazonses.com\",\n        \"createdDate\": 1580454000000,\n        \"createdBy\": \"Foo User\",\n        \"modifiedDate\": 1580484705000,\n        \"modifiedBy\": \"Foo User\"\n    },\n    \"parent\": {\n        \"client\": {\n            \"clientGuid\": \"032916bd-d734-472f-98e1-68f8b74180b6\",\n            \"name\": \"Serious Child\",\n            \"code\": \"SERCHLD\",\n            \"status\": \"ACTIVE\",\n            \"contactName\": \"Sue\",\n            \"contactEmail\": \"success@simulator.amazonses.com\",\n            \"createdDate\": 1580367600000,\n            \"createdBy\": \"Foo User\",\n            \"modifiedDate\": 1580416282000,\n            \"modifiedBy\": \"Foo User\"\n        },\n        \"parent\": {\n            \"client\": {\n                \"clientGuid\": \"5b9740e2-84c3-4f84-96ea-435ebbbdbd24\",\n                \"name\": \"Serious Parent\",\n                \"code\": \"SERPAR\",\n                \"status\": \"ACTIVE\",\n                \"contactName\": \"Fred\",\n                \"contactEmail\": \"success@simulator.amazonses.com\",\n                \"createdDate\": 1580367600000,\n                \"createdBy\": \"Foo User\",\n                \"modifiedDate\": 1580416221000,\n                \"modifiedBy\": \"Foo User\"\n            },\n            \"parent\": null\n        }\n    }\n}"}],"_postman_id":"25f377f0-d593-4859-8d3c-9308b925f75e"},{"name":"Update Client","event":[{"listen":"test","script":{"id":"ccd2c8d5-12c9-43e8-b78f-311622629307","exec":[""],"type":"text/javascript"}}],"id":"9a9c4899-db0d-4f7b-abc1-a6522b05d354","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"clientGuid\": \"{{client-guid}}\",\n    \"name\": \"New Client\",\n    \"parentGuid\": null,\n    \"inquiryName\": \"New Client\",\n    \"substituteEndUser\": false,\n    \"code\": \"NEW-01\",\n    \"contact\": {\n        \"name\": \"Mike\",\n        \"email\": \"api-sandbox@tazworks.com\",\n        \"phone\": \"(555) 555-1026\",\n        \"phoneExtension\": \"123\",\n        \"phoneAlternate\": null,\n        \"phoneAlternateExtension\": null\n    },\n    \"fax\": null,\n    \"faxInstructions\": \"fax instructions\",\n    \"owner\": {\n        \"name\": \"John Jones\",\n        \"email\": \"api-sandbox@tazworks.com\",\n        \"phone\": null,\n        \"phoneExtension\": null\n    },\n    \"status\": \"ACTIVE\",\n    \"disabledReason\": null,\n    \"disabledMessage\": null,\n    \"physicalAddress\": {\n        \"streetOne\": \"Center Street\",\n        \"streetTwo\": null,\n         \"city\": \"Denver\",\n        \"state\": \"CO\",\n        \"zipCode\": \"80204\",\n        \"country\": \"US\"\n    },\n    \"billingAddress\": null,\n    \"billingAddressSameAsPhysical\": true,\n    \"addressCareOf\": null,\n    \"displayInstructions\": false,\n    \"instructions\": null,\n    \"notes\": null,\n    \"preferredDomain\": null,\n    \"doNotApplyPreferredUrlToInvoice\": true,\n    \"copyFromClientGuid\": null,\n    \"copySections\": null\n}"},"url":"https://{{host}}/v1/clients/{{client-guid}}","description":"<p><strong>Client API</strong></p>\n<p>Update a client. Do a <strong>GET</strong> call and then update the model for the fields you want changed.</p>\n<p>See <strong>Create Client</strong> for field descriptions.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"5c8f55f1-98b1-4ed5-8829-6983fab5694a","name":"Update Client","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"clientGuid\": \"f8cd0b5a-a8d8-4d7b-887a-06716eb9ca5d\",\n    \"name\": \"Child Client\",\n    \"parentGuid\": \"226bd71c-0b12-4cfe-990a-a1a0659f81e0\",\n    \"inquiryName\": \"Child Client\",\n    \"substituteEndUser\": false,\n    \"code\": \"cdenby\",\n    \"contact\": {\n        \"name\": \"Clive Bean II\",\n        \"email\": \"clive@tazworks.com\",\n        \"phone\": null,\n        \"phoneExtension\": null,\n        \"phoneAlternate\": null,\n        \"phoneAlternateExtension\": null\n    },\n    \"fax\": null,\n    \"faxInstructions\": null,\n    \"owner\": {\n        \"name\": \"Owner Joe\",\n        \"email\": \"ownerjoe@foo.com\",\n        \"phone\": null,\n        \"phoneExtension\": null\n    },\n    \"status\": \"ACTIVE\",\n    \"disabledReason\": null,\n    \"disabledMessage\": null,\n    \"physicalAddress\": {\n        \"streetOne\": \"800 S. 100 E\",\n        \"streetTwo\": \"Burns Str\",\n         \"city\": \"Denver\",\n        \"state\": \"CO\",\n        \"zipCode\": \"80204\",\n        \"country\": \"US\"\n    },\n    \"billingAddress\": null,\n    \"billingAddressSameAsPhysical\": true,\n    \"addressCareOf\": null,\n    \"displayInstructions\": true,\n    \"instructions\": \"<div>Yodles</div>\",\n    \"notes\": null,\n    \"preferredDomain\": \"localhost\",\n    \"doNotApplyPreferredUrlToInvoice\": false,\n    \"copyFromClientGuid\": null,\n    \"copySections\": null\n}","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/clients/{{client-guid}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"clientGuid\": \"f8cd0b5a-a8d8-4d7b-887a-06716eb9ca5d\",\n    \"name\": \"Child Client\",\n    \"parentGuid\": \"226bd71c-0b12-4cfe-990a-a1a0659f81e0\",\n    \"inquiryName\": \"Child Client\",\n    \"substituteEndUser\": false,\n    \"createdDate\": 1544598000000,\n    \"createdBy\": \"Sally Foo\",\n    \"modifiedDate\": 1555543290000,\n    \"modifiedBy\": \"Sally Foo\",\n    \"code\": \"cdenby\",\n    \"contact\": {\n        \"name\": \"Clive Bean II\",\n        \"email\": \"clive@tazworks.com\"\n    },\n    \"owner\": {\n        \"name\": \"Owner Joe\",\n        \"email\": \"ownerjoe@foo.com\"\n    },\n    \"status\": \"ACTIVE\",\n    \"physicalAddress\": {\n        \"streetOne\": \"800 S. 100 E\",\n        \"streetTwo\": \"Burns Str\",\n         \"city\": \"Denver\",\n        \"state\": \"CO\",\n        \"zipCode\": \"80204\",\n        \"country\": \"US\"\n    },\n    \"billingAddressSameAsPhysical\": true,\n    \"displayInstructions\": true,\n    \"instructions\": \"<div>Yodles</div>\",\n    \"preferredDomain\": \"localhost\",\n    \"doNotApplyPreferredUrlToInvoice\": false\n}"}],"_postman_id":"9a9c4899-db0d-4f7b-abc1-a6522b05d354"},{"name":"Delete Client","event":[{"listen":"test","script":{"id":"41ded9a3-8731-4fde-b4a6-6acd52a7f357","exec":[""],"type":"text/javascript"}}],"id":"d8da77bb-ac61-4921-a076-6d81a0e17b5e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}","description":"<p><strong>Client API</strong></p>\n<p>Delete a client.  This will delete all information related to the client.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","clients","{{client-guid}}"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"8460df02-ea5b-41ef-a65a-97901b9fb0a5","name":"Delete Client","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/clients/{{client-guid}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"\"Client has been deleted.\""}],"_postman_id":"d8da77bb-ac61-4921-a076-6d81a0e17b5e"}],"id":"4bbb1734-89fe-4c91-8bed-939788265cde","description":"<p>Endpoints allowing you to create, update, and delete clients.  </p>\n","event":[{"listen":"prerequest","script":{"id":"d6ee3d8a-38a2-4139-93e1-c5cac7adff9b","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"5c73d737-75f2-47c6-935d-6b7dfb14a2da","type":"text/javascript","exec":[""]}}],"_postman_id":"4bbb1734-89fe-4c91-8bed-939788265cde","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}}},{"name":"General","item":[{"name":"ISO Countries","id":"551152be-af2b-428a-9958-d9b778b0cbe9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/isocountries","description":"<p>Get a list of the ISO 3166 countries and their two and three character codes.  Several endpoints, such as applicant addresses, use these codes.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","isocountries"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"dad4ac1b-5ee7-4f12-abdb-cd4713bafe60","name":"ISO Countries","originalRequest":{"method":"GET","header":[],"url":"https://{{host}}/v1/isocountries"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"country\": \"Afghanistan\",\n        \"validCodes\": \"AF, AFG\"\n    },\n    {\n        \"country\": \"Aland Islands\",\n        \"validCodes\": \"AX, ALA\"\n    },\n    {\n        \"country\": \"Albania\",\n        \"validCodes\": \"AL, ALB\"\n    }\n]"}],"_postman_id":"551152be-af2b-428a-9958-d9b778b0cbe9"},{"name":"Info","id":"72eb48a2-ecfc-4993-af37-88b88dd47d40","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/info","description":"<p>A general info endpoint that gives some information about the application instance that the supplied API token is for. This data is also shown in the developer portal.</p>\n<p>Response Fields:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>instanceGuid</strong> <em>uuid</em></td>\n<td>Identifier for the application instance. Also shows in webhook events.</td>\n</tr>\n<tr>\n<td><strong>instanceName</strong> <em>string</em></td>\n<td>The name you have given this application instance.</td>\n</tr>\n<tr>\n<td><strong>craName</strong> <em>string</em></td>\n<td>If this application instance is for a CRA, the name of the CRA is shown here.</td>\n</tr>\n<tr>\n<td><strong>application</strong> <em>Object</em></td>\n<td>The application information</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","info"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"53b9c046-edd1-4ca9-90b5-b863332f1299","name":"Info","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{jwt-token}}"},{"key":"Content-Type","value":"application/json","type":"text"}],"url":"https://{{host}}/v1/info"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"instanceGuid\": \"ed583a4c-50a9-419f-9c89-f4c7e04a5cb6\",\n    \"instanceName\": \"My instance name\",\n    \"craName\": \"ABC Co.\",\n    \"application\": {\n        \"applicationName\": \"My Application\",\n        \"apiTypes\": [\n            \"ORDER\",\n            \"CLIENT\"\n        ],\n        \"audience\": \"CRA\"\n    }\n}"}],"_postman_id":"72eb48a2-ecfc-4993-af37-88b88dd47d40"},{"name":"Usage Data","id":"c0590793-e82f-4b28-bb7b-9779d8014a68","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/usage?startDate=2020-06-26&endDate=2020-06-30","description":"<p>Retrieves your API usage data based off of the JWT given in the request.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","usage"],"host":["{{host}}"],"query":[{"description":{"content":"<p>(Required) Enter the <code>yyyy-MM-dd</code> string representation of the startDate you wish to retrieve usage information for.</p>\n","type":"text/plain"},"key":"startDate","value":"2020-06-26"},{"description":{"content":"<p>(Required) Enter the <code>yyyy-MM-dd</code> string representation of the endDate you wish to retrieve usage information for.</p>\n","type":"text/plain"},"key":"endDate","value":"2020-06-30"}],"variable":[]}},"response":[{"id":"169c7b65-4e7c-4501-8d9c-40823433cc38","name":"Usage Data","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{jwt-token}}"},{"key":"Content-Type","value":"application/json","type":"text"}],"url":{"raw":"https://{{host}}/v1/usage?startDate=2020-06-26&endDate=2020-06-30","protocol":"https","host":["{{host}}"],"path":["v1","usage"],"query":[{"key":"startDate","value":"2020-06-26","description":"(Required) Enter the `yyyy-MM-dd` string representation of the startDate you wish to retrieve usage information for."},{"key":"endDate","value":"2020-06-30","description":"(Required) Enter the `yyyy-MM-dd` string representation of the endDate you wish to retrieve usage information for."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"startDate\": \"2020-06-26\",\n    \"endDate\": \"2020-06-30\",\n    \"usageData\": [\n        [\n            0,\n            20000\n        ],\n        [\n            0,\n            20000\n        ],\n        [\n            0,\n            20000\n        ],\n        [\n            446,\n            19554\n        ],\n        [\n            3276,\n            16724\n        ]\n    ]\n}"}],"_postman_id":"c0590793-e82f-4b28-bb7b-9779d8014a68"}],"id":"f35341b0-bfca-4fb2-9f16-d2031499137d","description":"<p>Endpoints providing general information.  These endpoints are available for all the API types.</p>\n","event":[{"listen":"prerequest","script":{"id":"d5d41b58-38a7-48e0-855d-d5431581a3e4","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"91244a0f-c3e1-43d5-b1f0-57c8f98ec8b1","type":"text/javascript","exec":[""]}}],"_postman_id":"f35341b0-bfca-4fb2-9f16-d2031499137d","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}}},{"name":"Search Results","item":[{"name":"Searches","item":[{"name":"ADDITIONAL_EMPLOYMENT_VERIFICATION","item":[],"id":"7228f4ae-7e60-4b27-9df5-0deca571fa1a","description":"<p>See <a href=\"#f0ca3a3a-6049-4f50-b34d-fd191524274b\">EMPLOYMENT_VERIFICATION</a></p>\n","_postman_id":"7228f4ae-7e60-4b27-9df5-0deca571fa1a","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"28a4ef68-868e-4848-8a0a-3713663622a1","id":"28a4ef68-868e-4848-8a0a-3713663622a1","name":"Search Results","type":"folder"}}},{"name":"BANKRUPTCY_FILINGS","item":[],"id":"86e37884-abf5-49c1-ae9c-4fb54dc4b7ef","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Data Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>records</strong></td>\n<td><em>List&lt;<a href=\"#04cacfd3-efa1-4d8c-bf49-84412ef7cdf2\">BankruptcyRecord</a>&gt;</em></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><p>Example Results:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"records\": [\n        {\n              \"subject\": {\n                    \"fullName\": \"JOHN DOE\",\n                    \"ssn\": \"333221111\",\n                    \"addresses\": [\n                          {\n                                \"streetOne\": \"123 MAIN\",\n                                \"city\": \"Draper\",\n                                \"stateOrProvince\": \"UT\"\n                          }\n                    ]\n              },\n              \"caseNumber\": \"asdf1234\",\n              \"status\": \"DISPOSED\",\n              \"jurisdiction\": \"SLC CIVIL COURT\",\n              \"fileDate\": \"2020-01-01\",\n              \"comments\": \"Comments here\",\n              \"chapter\": \"9\",\n              \"statusDate\": \"2020-01-02\",\n              \"notes\": \"Notes here\"\n        }\n  ]\n}\n</code></pre>","event":[{"listen":"prerequest","script":{"id":"2dd26608-7707-4fe3-8f8f-1dbd3160746f","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"7c358207-40d9-4524-929a-1b85bff93db2","type":"text/javascript","exec":[""]}}],"_postman_id":"86e37884-abf5-49c1-ae9c-4fb54dc4b7ef","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"28a4ef68-868e-4848-8a0a-3713663622a1","id":"28a4ef68-868e-4848-8a0a-3713663622a1","name":"Search Results","type":"folder"}}},{"name":"COMMERCIAL_DRIVERS_LICENSE","item":[],"id":"d9b82f42-e705-463f-9e39-ce3f2cfc24ff","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Data Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>records</strong></td>\n<td><em>List&lt;<a href=\"#4f597a3a-d3dc-4df2-b95a-216afbe09951\">DrivingRecord</a>&gt;</em></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><p>Example Results:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"records\": [\n        {\n              \"licenseState\": \"UT\",\n              \"licenseNumber\": \"acb-123-3252346\",\n              \"licenseType\": \"Current\",\n              \"subject\": {\n                    \"fullName\": \"DOE JOHN\",\n                    \"ssn\": \"XXX-XX-3123\",\n                    \"dateOfBirth\": \"XXXX-12-12\",\n                    \"age\": \"47\"\n              }\n        },\n        {\n              \"licenseState\": \"UT\",\n              \"licenseNumber\": \"acb-123-3252346\",\n              \"licenseType\": \"Current\",\n              \"subject\": {\n                    \"fullName\": \"DOE JOHN\",\n                    \"ssn\": \"XXX-XX-3123\",\n                    \"dateOfBirth\": \"XXXX-12-12\",\n                    \"age\": \"47\"\n              }\n        }\n  ]\n}\n</code></pre>","event":[{"listen":"prerequest","script":{"id":"9c9e5322-2f96-4b9e-b5da-fa482abff304","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"f4a66535-f696-4cae-96a7-92c26951558e","type":"text/javascript","exec":[""]}}],"_postman_id":"d9b82f42-e705-463f-9e39-ce3f2cfc24ff","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"28a4ef68-868e-4848-8a0a-3713663622a1","id":"28a4ef68-868e-4848-8a0a-3713663622a1","name":"Search Results","type":"folder"}}},{"name":"COUNTY_CIVIL_RECORD","item":[],"id":"973695bd-9255-4b26-9f95-e4b49f994896","description":"<p>See <a href=\"#159e4bd2-c789-48e1-b6a4-0d11d11d441a\">CivilResult</a></p>\n<p>Example Results:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"records\": [\n        {\n              \"caseNumber\": \"asdf2352436f\",\n              \"courtName\": \"Sr\",\n              \"type\": \"CIVIL\",\n              \"jurisdiction\": \"Jacksonville\",\n              \"fileDate\": \"1990-01-01\",\n              \"comments\": \"&lt;span class=\\\"reportlabel\\\"&gt;Original Creditor: &lt;/span&gt;&lt;span class=\\\"data\\\"&gt;Mountain Credit Union&lt;/span&gt;&lt;span class=\\\"reportlabel\\\"&gt;Comments: &lt;/span&gt;&lt;span class=\\\"data\\\"&gt;This didn't end well&lt;/span&gt;\",\n              \"dispositionInfo\": {\n                    \"disposition\": \"This thing here\",\n                    \"date\": \"1990-01-01\"\n              },\n              \"defendants\": [\n                    {\n                          \"fullName\": \"DOE JOHN\"\n                    }\n              ],\n              \"plaintiffs\": [\n                    {\n                          \"attorneyName\": \"Will Robinson\"\n                    }\n              ]\n        }\n  ]\n}\n</code></pre>","event":[{"listen":"prerequest","script":{"id":"4341a1e6-fa3c-4494-89f0-b741e4a6ea3e","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"dc38e3d7-d99f-41ae-abb3-492048f2ae22","type":"text/javascript","exec":[""]}}],"_postman_id":"973695bd-9255-4b26-9f95-e4b49f994896","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"28a4ef68-868e-4848-8a0a-3713663622a1","id":"28a4ef68-868e-4848-8a0a-3713663622a1","name":"Search Results","type":"folder"}}},{"name":"COUNTY_CRIMINAL_RECORD","item":[],"id":"26139c1f-8540-4a30-ae5e-5a56e10feb39","description":"<p>See <a href=\"#d4c1d7b5-59ee-4f11-840c-8b86a9c83422\">CriminalResult</a></p>\n<p>Example Results:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"jurisdictionsSearched\": \"UT-SALT LAKE\",\n  \"records\": [\n        {\n              \"subject\": {\n                    \"fullName\": \"DOE, JOHN\",\n                    \"dateOfBirth\": \"XXXX-12-12\"\n              },\n              \"caseNumber\": \"ABC12345\",\n              \"jurisdiction\": \"UT-SALT LAKE\",\n              \"fileDate\": \"2015-05-01\",\n              \"offenses\": [\n                    {\n                          \"type\": \"Misdemeanor\",\n                          \"countOffense\": \"1. Resist Arrest\",\n                          \"offenseDate\": \"2015-05-01\",\n                          \"dispositionInfo\": {\n                                \"date\": \"2015-05-03\",\n                                \"other\": {\n                                      \"Court\": \"Dismissed\"\n                                }\n                          }\n                    }\n              ]\n        },\n        {\n              \"subject\": {\n                    \"fullName\": \"DOE, JOHN\",\n                    \"dateOfBirth\": \"XXXX-12-12\"\n              },\n              \"caseNumber\": \"ABC123456\",\n              \"jurisdiction\": \"UT-SALT LAKE\",\n              \"fileDate\": \"2011-11-11\",\n              \"offenses\": [\n                    {\n                          \"type\": \"Felony\",\n                          \"countOffense\": \"1. Assault - Deadly Weapon\",\n                          \"offenseDate\": \"2010-10-10\",\n                          \"dispositionInfo\": {\n                                \"date\": \"2011-10-31\",\n                                \"other\": {\n                                      \"Court\": \"Dismissed\"\n                                }\n                          }\n                    }\n              ]\n        },\n        {\n              \"subject\": {\n                    \"fullName\": \"DOE, JOHN\",\n                    \"dateOfBirth\": \"XXXX-12-12\"\n              },\n              \"caseNumber\": \"ABC1234567\",\n              \"jurisdiction\": \"UT-SALT LAKE\",\n              \"fileDate\": \"2013-12-07\",\n              \"offenses\": [\n                    {\n                          \"type\": \"Gross Misdemeanor\",\n                          \"countOffense\": \"1. Assault\",\n                          \"offenseDate\": \"2012-12-12\",\n                          \"sentenceInfo\": {\n                                \"sentence\": \"2 Years No Violations\"\n                          },\n                          \"dispositionInfo\": {\n                                \"date\": \"2013-03-13\",\n                                \"other\": {\n                                      \"Court\": \"Guilty\"\n                                }\n                          }\n                    },\n                    {\n                          \"type\": \"Gross Misdemeanor\",\n                          \"countOffense\": \"2. Assault\",\n                          \"offenseDate\": \"2012-12-12\",\n                          \"sentenceInfo\": {\n                                \"sentence\": \"2 Years No Violations\"\n                          },\n                          \"dispositionInfo\": {\n                                \"date\": \"2014-05-06\",\n                                \"other\": {\n                                      \"Court\": \"Guilty\"\n                                }\n                          }\n                    }\n              ]\n        }\n  ]\n}\n</code></pre>","event":[{"listen":"prerequest","script":{"id":"80b764ab-e87d-42d8-a1f9-40ea66c0a6cb","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"01a9e73a-6664-4e60-8e23-3471b0ae828e","type":"text/javascript","exec":[""]}}],"_postman_id":"26139c1f-8540-4a30-ae5e-5a56e10feb39","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"28a4ef68-868e-4848-8a0a-3713663622a1","id":"28a4ef68-868e-4848-8a0a-3713663622a1","name":"Search Results","type":"folder"}}},{"name":"CREDENTIALS_CUSTOM","item":[],"id":"6a243c4d-9491-4ccd-8f69-e0e9d8767d63","description":"<p>See <a href=\"#e1952f2e-de0c-4556-bdd3-fe3f463f4b3d\">CustomResult</a></p>\n","_postman_id":"6a243c4d-9491-4ccd-8f69-e0e9d8767d63","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"28a4ef68-868e-4848-8a0a-3713663622a1","id":"28a4ef68-868e-4848-8a0a-3713663622a1","name":"Search Results","type":"folder"}}},{"name":"CREDIT_CUSTOM","item":[],"id":"9a94db31-d2bc-43e4-8340-15ef5b6e9276","description":"<p>See <a href=\"#e1952f2e-de0c-4556-bdd3-fe3f463f4b3d\">CustomResult</a></p>\n","_postman_id":"9a94db31-d2bc-43e4-8340-15ef5b6e9276","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"28a4ef68-868e-4848-8a0a-3713663622a1","id":"28a4ef68-868e-4848-8a0a-3713663622a1","name":"Search Results","type":"folder"}}},{"name":"CREDIT_REPORT","item":[],"id":"bb5410b0-2098-4efc-8adc-8cd74c1d9553","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Data Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>mismoXml</strong></td>\n<td><em>String</em></td>\n<td>The MISMO XML format is an industry standard when reporting credit and mortgage data.</td>\n</tr>\n</tbody>\n</table>\n</div><p>Example Results:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"mismoXml\": \"&lt;?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?&gt;\\r\\n&lt;MISMO version=\\\"2.3.1\\\"&gt;\\r\\n&lt;RESPONDING_PARTY _Name=\\\"TAZWORKS\\\" _StreetAddress=\\\"1192 EAST DRAPER PARKWAY #401\\\" _City=\\\"DRAPER\\\" _State=\\\"UT\\\" _PostalCode=\\\"84020\\\"&gt;&lt;CONTACT_DETAIL&gt;&lt;CONTACT_POINT _RoleType=\\\"Work\\\" _Type=\\\"Phone\\\" _Value=\\\"8015727401\\\" /&gt;&lt;CONTACT_POINT _RoleType=\\\"Work\\\" _Type=\\\"Fax\\\" _Value=\\\"8014783401\\\" /&gt;&lt;/CONTACT_DETAIL&gt;&lt;/RESPONDING_PARTY&gt;&lt;RESPOND_TO_PARTY _Name=\\\"ABC MORTGAGE TEST\\\" _StreetAddress=\\\"1600 SUNFLOWER AVE STE 100\\\" _City=\\\"COSTA MESA\\\" _State=\\\"CA\\\" _PostalCode=\\\"92626\\\" /&gt;&lt;RESPONSE ResponseDateTime=\\\"2013-04-25T08:59:24-07\\\"&gt;&lt;KEY _Name=\\\"FICORiskScoreClassic98_MinimumValue\\\" _Value=\\\"336\\\" /&gt;&lt;KEY _Name=\\\"FICORiskScoreClassic98_MaximumValue\\\" _Value=\\\"843\\\" /&gt;&lt;KEY _Name=\\\"CreditScoreRankPercent_CreditResponse1_CreditScore59\\\" _Value=\\\"58\\\" /&gt;&lt;RESPONSE_DATA&gt;&lt;CREDIT_RESPONSE MISMOVersionID=\\\"2.3.1\\\" CreditResponseID=\\\"CreditResponse1\\\" CreditReportIdentifier=\\\"4901364\\\" CreditReportFirstIssuedDate=\\\"2013-04-25\\\" CreditReportLastUpdatedDate=\\\"2013-04-25\\\" CreditReportMergeType=\\\"Blend\\\" CreditReportType=\\\"Merge\\\" CreditRatingCodeType=\\\"Experian\\\"&gt;&lt;_DATA_INFORMATION&gt;&lt;DATA_VERSION _Name=\\\"MORTGAGECREDITLINK\\\" _Number=\\\"\\\" /&gt;&lt;DATA_VERSION _Name=\\\"MCLMismoFramework\\\" _Number=\\\"2.0\\\" /&gt;&lt;/_DATA_INFORMATION&gt;&lt;CREDIT_BUREAU _Name=\\\"TAZWORKS\\\" _StreetAddress=\\\"1192 EAST DRAPER PARKWAY #401\\\" _City=\\\"DRAPER\\\" _State=\\\"UT\\\" _PostalCode=\\\"84020\\\"&gt;&lt;CONTACT_DETAIL&gt;&lt;CONTACT_POINT _RoleType=\\\"Work\\\" _Type=\\\"Phone\\\" _Value=\\\"8015727401\\\" /&gt;&lt;CONTACT_POINT _RoleType=\\\"Work\\\" _Type=\\\"Fax\\\" _Value=\\\"8014783401\\\" /&gt;&lt;/CONTACT_DETAIL&gt;&lt;/CREDIT_BUREAU&gt;&lt;CREDIT_REPOSITORY_INCLUDED _EquifaxIndicator=\\\"N\\\" _ExperianIndicator=\\\"N\\\" _TransUnionIndicator=\\\"Y\\\" /&gt;&lt;REQUESTING_PARTY InternalAccountIdentifier=\\\"TESTML\\\" _Name=\\\"ABC MORTGAGE TEST\\\" _StreetAddress=\\\"1600 SUNFLOWER AVE STE 100\\\" _City=\\\"COSTA MESA\\\" _State=\\\"CA\\\" _PostalCode=\\\"92626\\\" /&gt;&lt;BORROWER BorrowerID=\\\"PC\\\" _FirstName=\\\"JOSEPH\\\" _LastName=\\\"KLEEN\\\" _MiddleName=\\\"B\\\" _PrintPositionType=\\\"Borrower\\\" _SSN=\\\"111223333\\\" _UnparsedName=\\\"JOSEPH B KLEEN\\\" MaritalStatusType=\\\"Unknown\\\"&gt;&lt;_RESIDENCE _StreetAddress=\\\"220 LOCUST AVENUE\\\" _City=\\\"IBERIA\\\" _State=\\\"MO\\\" _PostalCode=\\\"65486\\\" BorrowerResidencyType=\\\"Current\\\" /&gt;&lt;/BORROWER&gt;&lt;CREDIT_LIABILITY CreditLiabilityID=\\\"CreditLiability31\\\" BorrowerID=\\\"PC\\\" CreditFileID=\\\"CreditFile1\\\" CreditTradeReferenceID=\\\"CreditTradeReference69\\\" _AccountIdentifier=\\\"ACCT000006\\\" _AccountOpenedDate=\\\"2012-07\\\" _AccountOwnershipType=\\\"Individual\\\" _AccountReportedDate=\\\"2013-03\\\" _AccountStatusType=\\\"Open\\\" _AccountType=\\\"Installment\\\" _HighCreditAmount=\\\"31206\\\" _LastActivityDate=\\\"2013-03\\\" _ManualUpdateIndicator=\\\"N\\\" _MonthlyPaymentAmount=\\\"533\\\" _MonthsReviewedCount=\\\"08\\\" _PastDueAmount=\\\"0\\\" _TermsSourceType=\\\"Provided\\\" _UnpaidBalanceAmount=\\\"28626\\\" CreditBusinessType=\\\"Banking\\\" CreditLoanType=\\\"Automobile\\\"&gt;&lt;_CREDITOR _Name=\\\"USAA FED SVG\\\" _StreetAddress=\\\"POB 47504\\\" _City=\\\"SAN ANTONIO\\\" _State=\\\"TX\\\" _PostalCode=\\\"78265\\\"&gt;&lt;CONTACT_DETAIL&gt;&lt;CONTACT_POINT _RoleType=\\\"Work\\\" _Type=\\\"Phone\\\" _Value=\\\"2104982265\\\" /&gt;&lt;/CONTACT_DETAIL&gt;&lt;/_CREDITOR&gt;&lt;_CURRENT_RATING _Code=\\\"C\\\" _Type=\\\"AsAgreed\\\" /&gt;&lt;_LATE_COUNT _30Days=\\\"0\\\" _60Days=\\\"0\\\" _90Days=\\\"0\\\" /&gt;&lt;_PAYMENT_PATTERN _Data=\\\"CCCCCCCCC\\\" _StartDate=\\\"2013-03\\\" /&gt;&lt;CREDIT_COMMENT _SourceType=\\\"CreditBureau\\\" _Type=\\\"BureauRemarks\\\"&gt;&lt;_Text&gt;COLLATERAL: 2005 TOYOTA 4RUNNER&lt;/_Text&gt;&lt;/CREDIT_COMMENT&gt;&lt;CREDIT_REPOSITORY _SourceType=\\\"TransUnion\\\" _SubscriberCode=\\\"B 0100A001\\\" /&gt;&lt;/CREDIT_LIABILITY&gt;&lt;CREDIT_LIABILITY CreditLiabilityID=\\\"CreditLiability35\\\" BorrowerID=\\\"PC\\\" CreditFileID=\\\"CreditFile1\\\" _AccountIdentifier=\\\"ACCT000002\\\" _AccountOpenedDate=\\\"2012-09\\\" _AccountOwnershipType=\\\"Individual\\\" _AccountReportedDate=\\\"2013-03\\\" _AccountStatusType=\\\"Open\\\" _AccountType=\\\"Revolving\\\" _CreditLimitAmount=\\\"4000\\\" _HighCreditAmount=\\\"4000\\\" _LastActivityDate=\\\"2013-01\\\" _ManualUpdateIndicator=\\\"N\\\" _MonthlyPaymentAmount=\\\"6\\\" _MonthsReviewedCount=\\\"05\\\" _PastDueAmount=\\\"0\\\" _TermsDescription=\\\"\\\" _TermsSourceType=\\\"Provided\\\" _UnpaidBalanceAmount=\\\"6\\\" CreditBusinessType=\\\"Banking\\\" CreditLoanType=\\\"CreditCard\\\"&gt;&lt;_CREDITOR _Name=\\\"CHASE\\\" /&gt;&lt;_CURRENT_RATING _Code=\\\"C\\\" _Type=\\\"AsAgreed\\\" /&gt;&lt;_LATE_COUNT _30Days=\\\"0\\\" _60Days=\\\"0\\\" _90Days=\\\"0\\\" /&gt;&lt;_PAYMENT_PATTERN _Data=\\\"CCCCCC\\\" _StartDate=\\\"2013-03\\\" /&gt;&lt;CREDIT_REPOSITORY _SourceType=\\\"TransUnion\\\" _SubscriberCode=\\\"B 026QK001\\\" /&gt;&lt;/CREDIT_LIABILITY&gt;&lt;CREDIT_LIABILITY CreditLiabilityID=\\\"CreditLiability47\\\" BorrowerID=\\\"PC\\\" CreditFileID=\\\"CreditFile1\\\" CreditTradeReferenceID=\\\"CreditTradeReference77\\\" _AccountClosedDate=\\\"2010-02\\\" _AccountIdentifier=\\\"ACCT000013\\\" _AccountOpenedDate=\\\"2009-07\\\" _AccountOwnershipType=\\\"Individual\\\" _AccountPaidDate=\\\"2010-02\\\" _AccountReportedDate=\\\"2010-05\\\" _AccountStatusType=\\\"Paid\\\" _AccountType=\\\"Revolving\\\" _CreditLimitAmount=\\\"900\\\" _HighCreditAmount=\\\"900\\\" _LastActivityDate=\\\"2010-02\\\" _ManualUpdateIndicator=\\\"N\\\" _MonthlyPaymentAmount=\\\"0\\\" _MonthsReviewedCount=\\\"09\\\" _PastDueAmount=\\\"0\\\" _TermsSourceType=\\\"Provided\\\" _UnpaidBalanceAmount=\\\"0\\\" CreditBusinessType=\\\"DepartmentAndMailOrder\\\" CreditLoanType=\\\"CreditCard\\\"&gt;&lt;_CREDITOR _Name=\\\"NBGL-MCRAES\\\" _StreetAddress=\\\"P O BOX 10327\\\" _City=\\\"JACKSON\\\" _State=\\\"MS\\\" _PostalCode=\\\"39289\\\"&gt;&lt;CONTACT_DETAIL&gt;&lt;CONTACT_POINT _RoleType=\\\"Work\\\" _Type=\\\"Phone\\\" _Value=\\\"6019684293\\\" /&gt;&lt;/CONTACT_DETAIL&gt;&lt;/_CREDITOR&gt;&lt;_CURRENT_RATING _Code=\\\"C\\\" _Type=\\\"AsAgreed\\\" /&gt;&lt;_LATE_COUNT _30Days=\\\"0\\\" _60Days=\\\"0\\\" _90Days=\\\"0\\\" /&gt;&lt;_PAYMENT_PATTERN _Data=\\\"XCCXXXXXCC\\\" _StartDate=\\\"2010-05\\\" /&gt;&lt;CREDIT_COMMENT _SourceType=\\\"TransUnion\\\" _Code=\\\"PAL\\\"&gt;&lt;_Text&gt;PURCHASED BY ANOTHER LENDER&lt;/_Text&gt;&lt;/CREDIT_COMMENT&gt;&lt;CREDIT_COMMENT _SourceType=\\\"CreditBureau\\\" _Type=\\\"BureauRemarks\\\"&gt;&lt;_Text&gt;PURCHASED BY ANOTHER LENDER&lt;/_Text&gt;&lt;/CREDIT_COMMENT&gt;&lt;CREDIT_REPOSITORY _SourceType=\\\"TransUnion\\\" _SubscriberCode=\\\"D 01429002\\\" /&gt;&lt;/CREDIT_LIABILITY&gt;&lt;CREDIT_LIABILITY CreditLiabilityID=\\\"CreditLiability37\\\" BorrowerID=\\\"PC\\\" CreditFileID=\\\"CreditFile1\\\" CreditTradeReferenceID=\\\"CreditTradeReference71\\\" _AccountIdentifier=\\\"ACCT000009\\\" _AccountOpenedDate=\\\"2008-07\\\" _AccountOwnershipType=\\\"Individual\\\" _AccountReportedDate=\\\"2013-03\\\" _AccountStatusType=\\\"Open\\\" _AccountType=\\\"Revolving\\\" _CreditLimitAmount=\\\"1800\\\" _HighCreditAmount=\\\"1800\\\" _LastActivityDate=\\\"2013-03\\\" _ManualUpdateIndicator=\\\"N\\\" _MonthlyPaymentAmount=\\\"0\\\" _MonthsReviewedCount=\\\"48\\\" _PastDueAmount=\\\"0\\\" _TermsSourceType=\\\"Provided\\\" _UnpaidBalanceAmount=\\\"0\\\" CreditBusinessType=\\\"Banking\\\" CreditLoanType=\\\"CreditCard\\\"&gt;&lt;_CREDITOR _Name=\\\"ASSOC/CITI\\\" _StreetAddress=\\\"P O BOX 15687\\\" _City=\\\"WILMINGTON\\\" _State=\\\"DE\\\" _PostalCode=\\\"19850\\\"&gt;&lt;CONTACT_DETAIL&gt;&lt;CONTACT_POINT _RoleType=\\\"Work\\\" _Type=\\\"Phone\\\" _Value=\\\"8005335600\\\" /&gt;&lt;/CONTACT_DETAIL&gt;&lt;/_CREDITOR&gt;&lt;_CURRENT_RATING _Code=\\\"C\\\" _Type=\\\"AsAgreed\\\" /&gt;&lt;_LATE_COUNT _30Days=\\\"0\\\" _60Days=\\\"0\\\" _90Days=\\\"0\\\" /&gt;&lt;_PAYMENT_PATTERN _Data=\\\"CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCXCCCCCCCCCCCCCCC\\\" _StartDate=\\\"2013-03\\\" /&gt;&lt;CREDIT_REPOSITORY _SourceType=\\\"TransUnion\\\" _SubscriberCode=\\\"B 0282E001\\\" /&gt;&lt;/CREDIT_LIABILITY&gt;&lt;CREDIT_LIABILITY CreditLiabilityID=\\\"CreditLiability39\\\" BorrowerID=\\\"PC\\\" CreditFileID=\\\"CreditFile1\\\" _AccountIdentifier=\\\"ACCT000010\\\" _AccountOpenedDate=\\\"2009-07\\\" _AccountOwnershipType=\\\"Individual\\\" _AccountReportedDate=\\\"2013-02\\\" _AccountStatusType=\\\"Open\\\" _AccountType=\\\"Revolving\\\" _CreditLimitAmount=\\\"900\\\" _HighCreditAmount=\\\"900\\\" _LastActivityDate=\\\"2012-12\\\" _ManualUpdateIndicator=\\\"N\\\" _MonthlyPaymentAmount=\\\"0\\\" _MonthsReviewedCount=\\\"33\\\" _PastDueAmount=\\\"0\\\" _TermsSourceType=\\\"Provided\\\" _UnpaidBalanceAmount=\\\"0\\\" CreditBusinessType=\\\"Banking\\\" CreditLoanType=\\\"CreditCard\\\"&gt;&lt;_CREDITOR _Name=\\\"HSBC/MCRAES\\\" /&gt;&lt;_CURRENT_RATING _Code=\\\"C\\\" _Type=\\\"AsAgreed\\\" /&gt;&lt;_LATE_COUNT _30Days=\\\"0\\\" _60Days=\\\"0\\\" _90Days=\\\"0\\\" /&gt;&lt;_PAYMENT_PATTERN _Data=\\\"XCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC\\\" _StartDate=\\\"2013-02\\\" /&gt;&lt;CREDIT_REPOSITORY _SourceType=\\\"TransUnion\\\" _SubscriberCode=\\\"B 0109V392\\\" /&gt;&lt;/CREDIT_LIABILITY&gt;&lt;CREDIT_LIABILITY CreditLiabilityID=\\\"CreditLiability45\\\" BorrowerID=\\\"PC\\\" CreditFileID=\\\"CreditFile1\\\" CreditTradeReferenceID=\\\"CreditTradeReference75\\\" _AccountClosedDate=\\\"2009-08\\\" _AccountIdentifier=\\\"ACCT000014\\\" _AccountOpenedDate=\\\"2009-04\\\" _AccountOwnershipType=\\\"Individual\\\" _AccountPaidDate=\\\"2009-08\\\" _AccountReportedDate=\\\"2011-10\\\" _AccountStatusType=\\\"Paid\\\" _AccountType=\\\"Revolving\\\" _CreditLimitAmount=\\\"200\\\" _HighCreditAmount=\\\"200\\\" _LastActivityDate=\\\"2009-08\\\" _ManualUpdateIndicator=\\\"N\\\" _MonthlyPaymentAmount=\\\"0\\\" _MonthsReviewedCount=\\\"28\\\" _PastDueAmount=\\\"0\\\" _TermsSourceType=\\\"Provided\\\" _UnpaidBalanceAmount=\\\"0\\\" CreditBusinessType=\\\"DepartmentAndMailOrder\\\" CreditLoanType=\\\"CreditCard\\\"&gt;&lt;_CREDITOR _Name=\\\"CATO\\\" _StreetAddress=\\\"P O BOX 34216 8100 DENMARK RD\\\" _City=\\\"CHARLOTTE\\\" _State=\\\"NC\\\" _PostalCode=\\\"28234\\\"&gt;&lt;CONTACT_DETAIL&gt;&lt;CONTACT_POINT _RoleType=\\\"Work\\\" _Type=\\\"Phone\\\" _Value=\\\"7045567018\\\" /&gt;&lt;/CONTACT_DETAIL&gt;&lt;/_CREDITOR&gt;&lt;_CURRENT_RATING _Code=\\\"C\\\" _Type=\\\"AsAgreed\\\" /&gt;&lt;_LATE_COUNT _30Days=\\\"0\\\" _60Days=\\\"0\\\" _90Days=\\\"0\\\" /&gt;&lt;_PAYMENT_PATTERN _Data=\\\"XXXXXXXXXXXXXXXXXXXXXXXXXXCCC\\\" _StartDate=\\\"2011-10\\\" /&gt;&lt;CREDIT_COMMENT _SourceType=\\\"TransUnion\\\" _Code=\\\"CLO\\\"&gt;&lt;_Text&gt;CLOSED&lt;/_Text&gt;&lt;/CREDIT_COMMENT&gt;&lt;CREDIT_COMMENT _SourceType=\\\"CreditBureau\\\" _Type=\\\"BureauRemarks\\\"&gt;&lt;_Text&gt;CLOSED&lt;/_Text&gt;&lt;/CREDIT_COMMENT&gt;&lt;CREDIT_REPOSITORY _SourceType=\\\"TransUnion\\\" _SubscriberCode=\\\"D 0479N007\\\" /&gt;&lt;/CREDIT_LIABILITY&gt;&lt;CREDIT_LIABILITY CreditLiabilityID=\\\"CreditLiability43\\\" BorrowerID=\\\"PC\\\" CreditFileID=\\\"CreditFile1\\\" CreditTradeReferenceID=\\\"CreditTradeReference73\\\" _AccountClosedDate=\\\"2012-08\\\" _AccountIdentifier=\\\"ACCT000012\\\" _AccountOpenedDate=\\\"2012-07\\\" _AccountOwnershipType=\\\"Individual\\\" _AccountPaidDate=\\\"2012-08\\\" _AccountReportedDate=\\\"2012-08\\\" _AccountStatusType=\\\"Paid\\\" _AccountType=\\\"Installment\\\" _HighCreditAmount=\\\"30973\\\" _LastActivityDate=\\\"2012-08\\\" _ManualUpdateIndicator=\\\"N\\\" _MonthlyPaymentAmount=\\\"0\\\" _MonthsRemainingCount=\\\"71\\\" _MonthsReviewedCount=\\\"01\\\" _PastDueAmount=\\\"0\\\" _TermsMonthsCount=\\\"72\\\" _TermsSourceType=\\\"Provided\\\" _UnpaidBalanceAmount=\\\"0\\\" CreditBusinessType=\\\"Finance\\\" CreditLoanType=\\\"Automobile\\\"&gt;&lt;_CREDITOR _Name=\\\"TOYOTA MTR\\\" _StreetAddress=\\\"8550 UNITED PLAZA\\\" _City=\\\"BATON ROUGE\\\" _State=\\\"LA\\\" _PostalCode=\\\"70809\\\"&gt;&lt;CONTACT_DETAIL&gt;&lt;CONTACT_POINT _RoleType=\\\"Work\\\" _Type=\\\"Phone\\\" _Value=\\\"5049296600\\\" /&gt;&lt;/CONTACT_DETAIL&gt;&lt;/_CREDITOR&gt;&lt;_CURRENT_RATING _Code=\\\"C\\\" _Type=\\\"AsAgreed\\\" /&gt;&lt;_LATE_COUNT _30Days=\\\"0\\\" _60Days=\\\"0\\\" _90Days=\\\"0\\\" /&gt;&lt;_PAYMENT_PATTERN _Data=\\\"CC\\\" _StartDate=\\\"2012-08\\\" /&gt;&lt;CREDIT_COMMENT _SourceType=\\\"TransUnion\\\" _Code=\\\"CLO\\\"&gt;&lt;_Text&gt;CLOSED&lt;/_Text&gt;&lt;/CREDIT_COMMENT&gt;&lt;CREDIT_COMMENT _SourceType=\\\"CreditBureau\\\" _Type=\\\"BureauRemarks\\\"&gt;&lt;_Text&gt;CLOSED&lt;/_Text&gt;&lt;/CREDIT_COMMENT&gt;&lt;CREDIT_REPOSITORY _SourceType=\\\"TransUnion\\\" _SubscriberCode=\\\"Q 04176175\\\" /&gt;&lt;/CREDIT_LIABILITY&gt;&lt;CREDIT_LIABILITY CreditLiabilityID=\\\"CreditLiability41\\\" BorrowerID=\\\"PC\\\" CreditFileID=\\\"CreditFile1\\\" _AccountIdentifier=\\\"ACCT000011\\\" _AccountOpenedDate=\\\"2012-11\\\" _AccountOwnershipType=\\\"Individual\\\" _AccountReportedDate=\\\"2012-11\\\" _AccountStatusType=\\\"Open\\\" _AccountType=\\\"Revolving\\\" _CreditLimitAmount=\\\"1000\\\" _HighCreditAmount=\\\"1000\\\" _LastActivityDate=\\\"2012-11\\\" _ManualUpdateIndicator=\\\"N\\\" _MonthlyPaymentAmount=\\\"0\\\" _MonthsReviewedCount=\\\"01\\\" _PastDueAmount=\\\"0\\\" _TermsSourceType=\\\"Provided\\\" _UnpaidBalanceAmount=\\\"0\\\" CreditBusinessType=\\\"DepartmentAndMailOrder\\\" CreditLoanType=\\\"CreditCard\\\"&gt;&lt;_CREDITOR _Name=\\\"BEALLS\\\" /&gt;&lt;_CURRENT_RATING _Code=\\\"C\\\" _Type=\\\"AsAgreed\\\" /&gt;&lt;_LATE_COUNT _30Days=\\\"0\\\" _60Days=\\\"0\\\" _90Days=\\\"0\\\" /&gt;&lt;_PAYMENT_PATTERN _Data=\\\"CC\\\" _StartDate=\\\"2012-11\\\" /&gt;&lt;CREDIT_REPOSITORY _SourceType=\\\"TransUnion\\\" _SubscriberCode=\\\"D 01NZ8095\\\" /&gt;&lt;/CREDIT_LIABILITY&gt;&lt;CREDIT_LIABILITY CreditLiabilityID=\\\"CreditLiability25\\\" BorrowerID=\\\"PC\\\" CreditFileID=\\\"CreditFile1\\\" CreditTradeReferenceID=\\\"CreditTradeReference65\\\" _AccountIdentifier=\\\"ACCT000001\\\" _AccountOpenedDate=\\\"2013-04\\\" _AccountOwnershipType=\\\"Individual\\\" _AccountReportedDate=\\\"2013-04\\\" _AccountStatusType=\\\"Open\\\" _AccountType=\\\"Revolving\\\" _CreditLimitAmount=\\\"7500\\\" _HighCreditAmount=\\\"7500\\\" _ManualUpdateIndicator=\\\"N\\\" _MonthlyPaymentAmount=\\\"0\\\" _PastDueAmount=\\\"0\\\" _TermsSourceType=\\\"Provided\\\" _UnpaidBalanceAmount=\\\"0\\\" CreditBusinessType=\\\"Banking\\\" CreditLoanType=\\\"CreditCard\\\"&gt;&lt;_CREDITOR _Name=\\\"MBNA AMERICA\\\" _StreetAddress=\\\"POB 15026\\\" _City=\\\"WILMINGTON\\\" _State=\\\"DE\\\" _PostalCode=\\\"19801\\\" /&gt;&lt;_CURRENT_RATING _Code=\\\"C\\\" _Type=\\\"AsAgreed\\\" /&gt;&lt;_LATE_COUNT _30Days=\\\"\\\" _60Days=\\\"\\\" _90Days=\\\"\\\" /&gt;&lt;_PAYMENT_PATTERN _Data=\\\"C\\\" _StartDate=\\\"2013-04\\\" /&gt;&lt;CREDIT_REPOSITORY _SourceType=\\\"TransUnion\\\" _SubscriberCode=\\\"B 01597029\\\" /&gt;&lt;/CREDIT_LIABILITY&gt;&lt;CREDIT_LIABILITY CreditLiabilityID=\\\"CreditLiability23\\\" BorrowerID=\\\"PC\\\" CreditFileID=\\\"CreditFile1\\\" CreditTradeReferenceID=\\\"CreditTradeReference63\\\" _AccountIdentifier=\\\"ACCT000003\\\" _AccountOpenedDate=\\\"2010-05\\\" _AccountOwnershipType=\\\"Individual\\\" _AccountReportedDate=\\\"2013-04\\\" _AccountStatusType=\\\"Paid\\\" _AccountType=\\\"Revolving\\\" _CreditLimitAmount=\\\"7500\\\" _HighCreditAmount=\\\"7500\\\" _ManualUpdateIndicator=\\\"N\\\" _MonthlyPaymentAmount=\\\"0\\\" _MonthsReviewedCount=\\\"34\\\" _PastDueAmount=\\\"0\\\" _TermsSourceType=\\\"Provided\\\" _UnpaidBalanceAmount=\\\"0\\\" CreditBusinessType=\\\"Banking\\\" CreditLoanType=\\\"CreditCard\\\"&gt;&lt;_CREDITOR _Name=\\\"DISCOVER FIN\\\" _StreetAddress=\\\"POB 15316\\\" _City=\\\"WILMINGTON\\\" _State=\\\"DE\\\" _PostalCode=\\\"19850\\\" /&gt;&lt;_CURRENT_RATING _Code=\\\"C\\\" _Type=\\\"AsAgreed\\\" /&gt;&lt;_LATE_COUNT _30Days=\\\"0\\\" _60Days=\\\"0\\\" _90Days=\\\"0\\\" /&gt;&lt;_PAYMENT_PATTERN _Data=\\\"XCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC\\\" _StartDate=\\\"2013-04\\\" /&gt;&lt;CREDIT_COMMENT _SourceType=\\\"TransUnion\\\" _Code=\\\"CBC\\\"&gt;&lt;_Text&gt;ACCOUNT CLOSED BY CONSUMER&lt;/_Text&gt;&lt;/CREDIT_COMMENT&gt;&lt;CREDIT_COMMENT _SourceType=\\\"CreditBureau\\\" _Type=\\\"BureauRemarks\\\"&gt;&lt;_Text&gt;ACCOUNT CLOSED BY CONSUMER&lt;/_Text&gt;&lt;/CREDIT_COMMENT&gt;&lt;CREDIT_REPOSITORY _SourceType=\\\"TransUnion\\\" _SubscriberCode=\\\"B 09616003\\\" /&gt;&lt;/CREDIT_LIABILITY&gt;&lt;CREDIT_LIABILITY CreditLiabilityID=\\\"CreditLiability21\\\" BorrowerID=\\\"PC\\\" CreditFileID=\\\"CreditFile1\\\" CreditTradeReferenceID=\\\"CreditTradeReference61\\\" _AccountIdentifier=\\\"ACCT000008\\\" _AccountOpenedDate=\\\"2012-02\\\" _AccountOwnershipType=\\\"Individual\\\" _AccountReportedDate=\\\"2013-04\\\" _AccountStatusType=\\\"Open\\\" _AccountType=\\\"Revolving\\\" _CreditLimitAmount=\\\"1200\\\" _HighCreditAmount=\\\"1200\\\" _LastActivityDate=\\\"2012-09\\\" _ManualUpdateIndicator=\\\"N\\\" _MonthlyPaymentAmount=\\\"0\\\" _MonthsReviewedCount=\\\"14\\\" _PastDueAmount=\\\"0\\\" _TermsSourceType=\\\"Provided\\\" _UnpaidBalanceAmount=\\\"0\\\" CreditBusinessType=\\\"Clothing\\\" CreditLoanType=\\\"CreditCard\\\"&gt;&lt;_CREDITOR _Name=\\\"GEMB/OLDNAVY\\\" _StreetAddress=\\\"P.O. BOX 29116\\\" _City=\\\"SHAWNEE MISSIO\\\" _State=\\\"KS\\\" _PostalCode=\\\"66201\\\"&gt;&lt;CONTACT_DETAIL&gt;&lt;CONTACT_POINT _RoleType=\\\"Work\\\" _Type=\\\"Phone\\\" _Value=\\\"8772226868\\\" /&gt;&lt;/CONTACT_DETAIL&gt;&lt;/_CREDITOR&gt;&lt;_CURRENT_RATING _Code=\\\"C\\\" _Type=\\\"AsAgreed\\\" /&gt;&lt;_LATE_COUNT _30Days=\\\"0\\\" _60Days=\\\"0\\\" _90Days=\\\"0\\\" /&gt;&lt;_PAYMENT_PATTERN _Data=\\\"XCCCCCCCCCCCCCC\\\" _StartDate=\\\"2013-04\\\" /&gt;&lt;CREDIT_REPOSITORY _SourceType=\\\"TransUnion\\\" _SubscriberCode=\\\"C 0235058G\\\" /&gt;&lt;/CREDIT_LIABILITY&gt;&lt;CREDIT_LIABILITY CreditLiabilityID=\\\"CreditLiability33\\\" BorrowerID=\\\"PC\\\" CreditFileID=\\\"CreditFile1\\\" _AccountIdentifier=\\\"ACCT000005\\\" _AccountOpenedDate=\\\"2012-09\\\" _AccountOwnershipType=\\\"Individual\\\" _AccountReportedDate=\\\"2013-03\\\" _AccountStatusType=\\\"Open\\\" _AccountType=\\\"Installment\\\" _LastActivityDate=\\\"2013-03\\\" _ManualUpdateIndicator=\\\"N\\\" _PastDueAmount=\\\"0\\\" CreditBusinessType=\\\"UtilitiesAndFuel\\\" CreditLoanType=\\\"InstallmentLoan\\\"&gt;&lt;_CREDITOR _Name=\\\"VERIZON SW\\\" /&gt;&lt;_CURRENT_RATING _Code=\\\"C\\\" _Type=\\\"AsAgreed\\\" /&gt;&lt;_LATE_COUNT _30Days=\\\"\\\" _60Days=\\\"\\\" _90Days=\\\"\\\" /&gt;&lt;_PAYMENT_PATTERN _Data=\\\"C\\\" _StartDate=\\\"2013-03\\\" /&gt;&lt;CREDIT_COMMENT _SourceType=\\\"CreditBureau\\\" _Type=\\\"BureauRemarks\\\"&gt;&lt;_Text&gt;UTILITY COMPANY&lt;/_Text&gt;&lt;/CREDIT_COMMENT&gt;&lt;CREDIT_REPOSITORY _SourceType=\\\"TransUnion\\\" _SubscriberCode=\\\"U 0298L007\\\" /&gt;&lt;/CREDIT_LIABILITY&gt;&lt;CREDIT_LIABILITY CreditLiabilityID=\\\"CreditLiability29\\\" BorrowerID=\\\"PC\\\" CreditFileID=\\\"CreditFile1\\\" _AccountIdentifier=\\\"ACCT000007\\\" _AccountOpenedDate=\\\"2010-01\\\" _AccountOwnershipType=\\\"Individual\\\" _AccountReportedDate=\\\"2013-04\\\" _AccountStatusType=\\\"Open\\\" _AccountType=\\\"Revolving\\\" _CreditLimitAmount=\\\"500\\\" _HighCreditAmount=\\\"500\\\" _LastActivityDate=\\\"2011-09\\\" _ManualUpdateIndicator=\\\"N\\\" _MonthlyPaymentAmount=\\\"0\\\" _MonthsReviewedCount=\\\"38\\\" _PastDueAmount=\\\"0\\\" _TermsSourceType=\\\"Provided\\\" _UnpaidBalanceAmount=\\\"0\\\" CreditBusinessType=\\\"Banking\\\" CreditLoanType=\\\"CreditCard\\\"&gt;&lt;_CREDITOR _Name=\\\"GEMB/JCP\\\" /&gt;&lt;_CURRENT_RATING _Code=\\\"C\\\" _Type=\\\"AsAgreed\\\" /&gt;&lt;_LATE_COUNT _30Days=\\\"0\\\" _60Days=\\\"0\\\" _90Days=\\\"0\\\" /&gt;&lt;_PAYMENT_PATTERN _Data=\\\"XCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC\\\" _StartDate=\\\"2013-04\\\" /&gt;&lt;CREDIT_REPOSITORY _SourceType=\\\"TransUnion\\\" _SubscriberCode=\\\"B 0235058D\\\" /&gt;&lt;/CREDIT_LIABILITY&gt;&lt;CREDIT_LIABILITY CreditLiabilityID=\\\"CreditLiability27\\\" BorrowerID=\\\"PC\\\" CreditFileID=\\\"CreditFile1\\\" CreditTradeReferenceID=\\\"CreditTradeReference67\\\" _AccountIdentifier=\\\"ACCT000004\\\" _AccountOpenedDate=\\\"2013-04\\\" _AccountOwnershipType=\\\"Individual\\\" _AccountReportedDate=\\\"2013-04\\\" _AccountStatusType=\\\"Open\\\" _AccountType=\\\"Revolving\\\" _CreditLimitAmount=\\\"2300\\\" _HighCreditAmount=\\\"2300\\\" _ManualUpdateIndicator=\\\"N\\\" _MonthlyPaymentAmount=\\\"0\\\" _PastDueAmount=\\\"0\\\" _TermsSourceType=\\\"Provided\\\" _UnpaidBalanceAmount=\\\"0\\\" CreditBusinessType=\\\"Banking\\\" CreditLoanType=\\\"CreditCard\\\"&gt;&lt;_CREDITOR _Name=\\\"CITI\\\" _StreetAddress=\\\"POB 6241\\\" _City=\\\"SIOUX FALLS\\\" _State=\\\"SD\\\" _PostalCode=\\\"57117\\\"&gt;&lt;CONTACT_DETAIL&gt;&lt;CONTACT_POINT _RoleType=\\\"Work\\\" _Type=\\\"Phone\\\" _Value=\\\"8008430777\\\" /&gt;&lt;/CONTACT_DETAIL&gt;&lt;/_CREDITOR&gt;&lt;_CURRENT_RATING _Code=\\\"C\\\" _Type=\\\"AsAgreed\\\" /&gt;&lt;_LATE_COUNT _30Days=\\\"\\\" _60Days=\\\"\\\" _90Days=\\\"\\\" /&gt;&lt;_PAYMENT_PATTERN _Data=\\\"C\\\" _StartDate=\\\"2013-04\\\" /&gt;&lt;CREDIT_REPOSITORY _SourceType=\\\"TransUnion\\\" _SubscriberCode=\\\"B 064DB002\\\" /&gt;&lt;/CREDIT_LIABILITY&gt;&lt;CREDIT_INQUIRY CreditInquiryID=\\\"CreditInquiry51\\\" BorrowerID=\\\"PC\\\" CreditFileID=\\\"CreditFile1\\\" CreditTradeReferenceID=\\\"CreditTradeReference79\\\" _Name=\\\"CHASE CREDIT\\\" _Date=\\\"2013-04-20\\\" CreditBusinessType=\\\"RealEstateAndPublicAccommodation\\\"&gt;&lt;CREDIT_REPOSITORY _SourceType=\\\"TransUnion\\\" _SubscriberCode=\\\"R 06482329\\\" /&gt;&lt;/CREDIT_INQUIRY&gt;&lt;CREDIT_INQUIRY CreditInquiryID=\\\"CreditInquiry53\\\" BorrowerID=\\\"PC\\\" CreditFileID=\\\"CreditFile1\\\" _Name=\\\"CITI\\\" _Date=\\\"2013-03-15\\\" CreditBusinessType=\\\"Banking\\\"&gt;&lt;CREDIT_REPOSITORY _SourceType=\\\"TransUnion\\\" _SubscriberCode=\\\"B 06519225\\\" /&gt;&lt;/CREDIT_INQUIRY&gt;&lt;CREDIT_INQUIRY CreditInquiryID=\\\"CreditInquiry55\\\" BorrowerID=\\\"PC\\\" CreditFileID=\\\"CreditFile1\\\" CreditTradeReferenceID=\\\"CreditTradeReference81\\\" _Name=\\\"FIRST USA NA\\\" _Date=\\\"2012-09-22\\\" CreditBusinessType=\\\"Banking\\\"&gt;&lt;CREDIT_REPOSITORY _SourceType=\\\"TransUnion\\\" _SubscriberCode=\\\"B 00006675\\\" /&gt;&lt;/CREDIT_INQUIRY&gt;&lt;CREDIT_INQUIRY CreditInquiryID=\\\"CreditInquiry57\\\" BorrowerID=\\\"PC\\\" CreditFileID=\\\"CreditFile1\\\" _Name=\\\"CARLOCK TOYO\\\" _Date=\\\"2012-07-05\\\" CreditBusinessType=\\\"Automotive\\\"&gt;&lt;CREDIT_REPOSITORY _SourceType=\\\"TransUnion\\\" _SubscriberCode=\\\"A 00210492\\\" /&gt;&lt;/CREDIT_INQUIRY&gt;&lt;CREDIT_FILE CreditFileID=\\\"CreditFile1\\\" BorrowerID=\\\"PC\\\" CreditRepositorySourceType=\\\"TransUnion\\\" _InfileDate=\\\"2001-06-01\\\" _ResultStatusType=\\\"FileReturned\\\"&gt;&lt;_ALERT_MESSAGE _AdverseIndicator=\\\"Y\\\" _CategoryType=\\\"FACTARiskScoreValue\\\"&gt;&lt;_Text&gt;FACTA: Risk Score Value - The Risk Score Value was adversely affected by credit inquiries present in the credit file.&lt;/_Text&gt;&lt;/_ALERT_MESSAGE&gt;&lt;_BORROWER _FirstName=\\\"JOSEPH\\\" _LastName=\\\"KLEEN\\\" _MiddleName=\\\"B\\\" _SSN=\\\"111223333\\\" _UnparsedName=\\\"JOSEPH B KLEEN\\\"&gt;&lt;_ALIAS _UnparsedName=\\\"KLEEN,JOEY,B\\\" /&gt;&lt;_RESIDENCE _StreetAddress=\\\"220 LOCUST AV, IBERIA, MO 65486\\\" _City=\\\"IBERIA\\\" _State=\\\"MO\\\" _PostalCode=\\\"65486\\\"&gt;&lt;PARSED_STREET_ADDRESS _HouseNumber=\\\"220\\\" _StreetName=\\\"LOCUST\\\" _StreetSuffix=\\\"AV\\\" /&gt;&lt;/_RESIDENCE&gt;&lt;_RESIDENCE _StreetAddress=\\\"7144 S JAMACHA RD, IBERIA, MO 65486\\\" _City=\\\"IBERIA\\\" _State=\\\"MO\\\" _PostalCode=\\\"65486\\\"&gt;&lt;PARSED_STREET_ADDRESS _DirectionPrefix=\\\"S\\\" _HouseNumber=\\\"7144\\\" _StreetName=\\\"JAMACHA\\\" _StreetSuffix=\\\"RD\\\" /&gt;&lt;/_RESIDENCE&gt;&lt;EMPLOYER _Name=\\\"FLETCHER MOTORCARS\\\" EmploymentPositionDescription=\\\"CAR SALES\\\" /&gt;&lt;/_BORROWER&gt;&lt;/CREDIT_FILE&gt;&lt;CREDIT_SCORE CreditScoreID=\\\"CreditScore59\\\" BorrowerID=\\\"PC\\\" CreditFileID=\\\"CreditFile1\\\" CreditReportIdentifier=\\\"4901364\\\" CreditRepositorySourceType=\\\"TransUnion\\\" _FACTAInquiriesIndicator=\\\"Y\\\" _ModelNameType=\\\"FICORiskScoreClassic98\\\" _Value=\\\"741\\\"&gt;&lt;_FACTOR _Code=\\\"014\\\" _Text=\\\"LENGTH OF TIME ACCOUNTS HAVE BEEN ESTABLISHED\\\" /&gt;&lt;_FACTOR _Code=\\\"012\\\" _Text=\\\"LENGTH OF TIME REVOLVING ACCOUNTS HAVE BEEN ESTABLISHED\\\" /&gt;&lt;_FACTOR _Code=\\\"008\\\" _Text=\\\"TOO MANY INQUIRIES LAST 12 MONTHS\\\" /&gt;&lt;_FACTOR _Code=\\\"030\\\" _Text=\\\"TIME SINCE MOST RECENT ACCOUNT OPENING IS TOO SHORT\\\" /&gt;&lt;_FACTOR _Code=\\\"FA\\\" _Text=\\\"INQUIRIES IMPACTED THE CREDIT SCORE\\\" /&gt;&lt;/CREDIT_SCORE&gt;&lt;CREDIT_TRADE_REFERENCE CreditTradeReferenceID=\\\"CreditTradeReference61\\\" _Name=\\\"OLD NAVY\\\" _StreetAddress=\\\"P.O. BOX 29116\\\" _City=\\\"SHAWNEE MISSIO\\\" _State=\\\"KS\\\" _PostalCode=\\\"66201\\\"&gt;&lt;CONTACT_DETAIL&gt;&lt;CONTACT_POINT _RoleType=\\\"Work\\\" _Type=\\\"Phone\\\" _Value=\\\"8772226868\\\" /&gt;&lt;/CONTACT_DETAIL&gt;&lt;CREDIT_REPOSITORY _SourceType=\\\"TransUnion\\\" _SubscriberCode=\\\"C 0235058G\\\" /&gt;&lt;/CREDIT_TRADE_REFERENCE&gt;&lt;CREDIT_TRADE_REFERENCE CreditTradeReferenceID=\\\"CreditTradeReference63\\\" _Name=\\\"DISCOVER FINANCIAL SERVI\\\" _StreetAddress=\\\"POB 15316\\\" _City=\\\"WILMINGTON\\\" _State=\\\"DE\\\" _PostalCode=\\\"19850\\\"&gt;&lt;CREDIT_REPOSITORY _SourceType=\\\"TransUnion\\\" _SubscriberCode=\\\"B 09616003\\\" /&gt;&lt;/CREDIT_TRADE_REFERENCE&gt;&lt;CREDIT_TRADE_REFERENCE CreditTradeReferenceID=\\\"CreditTradeReference65\\\" _Name=\\\"MBNA AMERICA\\\" _StreetAddress=\\\"POB 15026\\\" _City=\\\"WILMINGTON\\\" _State=\\\"DE\\\" _PostalCode=\\\"19801\\\"&gt;&lt;CREDIT_REPOSITORY _SourceType=\\\"TransUnion\\\" _SubscriberCode=\\\"B 01597029\\\" /&gt;&lt;/CREDIT_TRADE_REFERENCE&gt;&lt;CREDIT_TRADE_REFERENCE CreditTradeReferenceID=\\\"CreditTradeReference67\\\" _Name=\\\"CITI\\\" _StreetAddress=\\\"POB 6241\\\" _City=\\\"SIOUX FALLS\\\" _State=\\\"SD\\\" _PostalCode=\\\"57117\\\"&gt;&lt;CONTACT_DETAIL&gt;&lt;CONTACT_POINT _RoleType=\\\"Work\\\" _Type=\\\"Phone\\\" _Value=\\\"8008430777\\\" /&gt;&lt;/CONTACT_DETAIL&gt;&lt;CREDIT_REPOSITORY _SourceType=\\\"TransUnion\\\" _SubscriberCode=\\\"B 064DB002\\\" /&gt;&lt;/CREDIT_TRADE_REFERENCE&gt;&lt;CREDIT_TRADE_REFERENCE CreditTradeReferenceID=\\\"CreditTradeReference69\\\" _Name=\\\"USAA FED SVG\\\" _StreetAddress=\\\"POB 47504\\\" _City=\\\"SAN ANTONIO\\\" _State=\\\"TX\\\" _PostalCode=\\\"78265\\\"&gt;&lt;CONTACT_DETAIL&gt;&lt;CONTACT_POINT _RoleType=\\\"Work\\\" _Type=\\\"Phone\\\" _Value=\\\"2104982265\\\" /&gt;&lt;/CONTACT_DETAIL&gt;&lt;CREDIT_REPOSITORY _SourceType=\\\"TransUnion\\\" _SubscriberCode=\\\"B 0100A001\\\" /&gt;&lt;/CREDIT_TRADE_REFERENCE&gt;&lt;CREDIT_TRADE_REFERENCE CreditTradeReferenceID=\\\"CreditTradeReference71\\\" _Name=\\\"ASSOC/CITI\\\" _StreetAddress=\\\"P O BOX 15687\\\" _City=\\\"WILMINGTON\\\" _State=\\\"DE\\\" _PostalCode=\\\"19850\\\"&gt;&lt;CONTACT_DETAIL&gt;&lt;CONTACT_POINT _RoleType=\\\"Work\\\" _Type=\\\"Phone\\\" _Value=\\\"8005335600\\\" /&gt;&lt;/CONTACT_DETAIL&gt;&lt;CREDIT_REPOSITORY _SourceType=\\\"TransUnion\\\" _SubscriberCode=\\\"B 0282E001\\\" /&gt;&lt;/CREDIT_TRADE_REFERENCE&gt;&lt;CREDIT_TRADE_REFERENCE CreditTradeReferenceID=\\\"CreditTradeReference73\\\" _Name=\\\"TOYOTA MTR\\\" _StreetAddress=\\\"8550 UNITED PLAZA\\\" _City=\\\"BATON ROUGE\\\" _State=\\\"LA\\\" _PostalCode=\\\"70809\\\"&gt;&lt;CONTACT_DETAIL&gt;&lt;CONTACT_POINT _RoleType=\\\"Work\\\" _Type=\\\"Phone\\\" _Value=\\\"5049296600\\\" /&gt;&lt;/CONTACT_DETAIL&gt;&lt;CREDIT_REPOSITORY _SourceType=\\\"TransUnion\\\" _SubscriberCode=\\\"Q 04176175\\\" /&gt;&lt;/CREDIT_TRADE_REFERENCE&gt;&lt;CREDIT_TRADE_REFERENCE CreditTradeReferenceID=\\\"CreditTradeReference75\\\" _Name=\\\"CATO\\\" _StreetAddress=\\\"P O BOX 34216 8100 DENMARK RD\\\" _City=\\\"CHARLOTTE\\\" _State=\\\"NC\\\" _PostalCode=\\\"28234\\\"&gt;&lt;CONTACT_DETAIL&gt;&lt;CONTACT_POINT _RoleType=\\\"Work\\\" _Type=\\\"Phone\\\" _Value=\\\"7045567018\\\" /&gt;&lt;/CONTACT_DETAIL&gt;&lt;CREDIT_REPOSITORY _SourceType=\\\"TransUnion\\\" _SubscriberCode=\\\"D 0479N007\\\" /&gt;&lt;/CREDIT_TRADE_REFERENCE&gt;&lt;CREDIT_TRADE_REFERENCE CreditTradeReferenceID=\\\"CreditTradeReference77\\\" _Name=\\\"NBGL-MCRAES\\\" _StreetAddress=\\\"P O BOX 10327\\\" _City=\\\"JACKSON\\\" _State=\\\"MS\\\" _PostalCode=\\\"39289\\\"&gt;&lt;CONTACT_DETAIL&gt;&lt;CONTACT_POINT _RoleType=\\\"Work\\\" _Type=\\\"Phone\\\" _Value=\\\"6019684293\\\" /&gt;&lt;/CONTACT_DETAIL&gt;&lt;CREDIT_REPOSITORY _SourceType=\\\"TransUnion\\\" _SubscriberCode=\\\"D 01429002\\\" /&gt;&lt;/CREDIT_TRADE_REFERENCE&gt;&lt;CREDIT_TRADE_REFERENCE CreditTradeReferenceID=\\\"CreditTradeReference79\\\" _Name=\\\"CHASE CREDIT\\\" _StreetAddress=\\\"6350 LAUREL CANYON 4TH FLR SUITE 450\\\" _City=\\\"NORTH HOLLYWOO\\\" _State=\\\"CA\\\" _PostalCode=\\\"91606\\\"&gt;&lt;CONTACT_DETAIL&gt;&lt;CONTACT_POINT _RoleType=\\\"Work\\\" _Type=\\\"Phone\\\" _Value=\\\"8187626262\\\" /&gt;&lt;/CONTACT_DETAIL&gt;&lt;CREDIT_REPOSITORY _SourceType=\\\"TransUnion\\\" _SubscriberCode=\\\"R 06482329\\\" /&gt;&lt;/CREDIT_TRADE_REFERENCE&gt;&lt;CREDIT_TRADE_REFERENCE CreditTradeReferenceID=\\\"CreditTradeReference81\\\" _Name=\\\"FUSA\\\" _StreetAddress=\\\"THREE CHRISTINA 201 N. WALNUT ST\\\" _City=\\\"WILMINGTON\\\" _State=\\\"DE\\\" _PostalCode=\\\"19801\\\"&gt;&lt;CONTACT_DETAIL&gt;&lt;CONTACT_POINT _RoleType=\\\"Work\\\" _Type=\\\"Phone\\\" _Value=\\\"0000000000\\\" /&gt;&lt;/CONTACT_DETAIL&gt;&lt;CREDIT_REPOSITORY _SourceType=\\\"TransUnion\\\" _SubscriberCode=\\\"B 00006675\\\" /&gt;&lt;/CREDIT_TRADE_REFERENCE&gt;&lt;CREDIT_CONSUMER_REFERRAL _Name=\\\"TRANSUNION\\\" _StreetAddress=\\\"PO BOX 1000\\\" _City=\\\"CHESTER\\\" _State=\\\"PA\\\" _PostalCode=\\\"19022\\\"&gt;&lt;CONTACT_DETAIL&gt;&lt;CONTACT_POINT _RoleType=\\\"Work\\\" _Type=\\\"Phone\\\" _Value=\\\"8008884213\\\" /&gt;&lt;/CONTACT_DETAIL&gt;&lt;/CREDIT_CONSUMER_REFERRAL&gt;&lt;CREDIT_SUMMARY BorrowerID=\\\"PC\\\" _Name=\\\"MLTradeSummary\\\"&gt;&lt;_DATA_SET _Name=\\\"LiabilityOldestDate\\\" _Value=\\\"2008-07\\\" /&gt;&lt;_DATA_SET _Name=\\\"LiabilityOldestCreditorName\\\" _Value=\\\"ASSOC/CITI\\\" /&gt;&lt;_DATA_SET _Name=\\\"MortgageCount\\\" _Value=\\\"0\\\" /&gt;&lt;_DATA_SET _Name=\\\"MortgageBalance\\\" _Value=\\\"0\\\" /&gt;&lt;_DATA_SET _Name=\\\"MortgagePayment\\\" _Value=\\\"0\\\" /&gt;&lt;_DATA_SET _Name=\\\"MortgagePastDue\\\" _Value=\\\"0\\\" /&gt;&lt;_DATA_SET _Name=\\\"MortgageHighCredit\\\" _Value=\\\"0\\\" /&gt;&lt;_DATA_SET _Name=\\\"InstallmentCount\\\" _Value=\\\"3\\\" /&gt;&lt;_DATA_SET _Name=\\\"InstallmentBalance\\\" _Value=\\\"28626\\\" /&gt;&lt;_DATA_SET _Name=\\\"InstallmentPayment\\\" _Value=\\\"533\\\" /&gt;&lt;_DATA_SET _Name=\\\"InstallmentPastDue\\\" _Value=\\\"0\\\" /&gt;&lt;_DATA_SET _Name=\\\"InstallmentHighCredit\\\" _Value=\\\"31206\\\" /&gt;&lt;_DATA_SET _Name=\\\"InstallmentOtherCount\\\" _Value=\\\"1\\\" /&gt;&lt;_DATA_SET _Name=\\\"InstallmentOtherBalance\\\" _Value=\\\"0\\\" /&gt;&lt;_DATA_SET _Name=\\\"InstallmentOtherPayment\\\" _Value=\\\"0\\\" /&gt;&lt;_DATA_SET _Name=\\\"InstallmentOtherPastDue\\\" _Value=\\\"0\\\" /&gt;&lt;_DATA_SET _Name=\\\"InstallmentOtherHighCredit\\\" _Value=\\\"0\\\" /&gt;&lt;_DATA_SET _Name=\\\"AutoCount\\\" _Value=\\\"2\\\" /&gt;&lt;_DATA_SET _Name=\\\"AutoBalance\\\" _Value=\\\"28626\\\" /&gt;&lt;_DATA_SET _Name=\\\"AutoPayment\\\" _Value=\\\"533\\\" /&gt;&lt;_DATA_SET _Name=\\\"AutoPastDue\\\" _Value=\\\"0\\\" /&gt;&lt;_DATA_SET _Name=\\\"AutoHighCredit\\\" _Value=\\\"31206\\\" /&gt;&lt;_DATA_SET _Name=\\\"EducationCount\\\" _Value=\\\"0\\\" /&gt;&lt;_DATA_SET _Name=\\\"EducationBalance\\\" _Value=\\\"0\\\" /&gt;&lt;_DATA_SET _Name=\\\"EducationPayment\\\" _Value=\\\"0\\\" /&gt;&lt;_DATA_SET _Name=\\\"EducationPastDue\\\" _Value=\\\"0\\\" /&gt;&lt;_DATA_SET _Name=\\\"EducationHighCredit\\\" _Value=\\\"0\\\" /&gt;&lt;_DATA_SET _Name=\\\"OpenCount\\\" _Value=\\\"0\\\" /&gt;&lt;_DATA_SET _Name=\\\"OpenBalance\\\" _Value=\\\"0\\\" /&gt;&lt;_DATA_SET _Name=\\\"OpenPayment\\\" _Value=\\\"0\\\" /&gt;&lt;_DATA_SET _Name=\\\"OpenPastDue\\\" _Value=\\\"0\\\" /&gt;&lt;_DATA_SET _Name=\\\"OpenHighCredit\\\" _Value=\\\"0\\\" /&gt;&lt;_DATA_SET _Name=\\\"RevolvingCount\\\" _Value=\\\"11\\\" /&gt;&lt;_DATA_SET _Name=\\\"RevolvingBalance\\\" _Value=\\\"6\\\" /&gt;&lt;_DATA_SET _Name=\\\"RevolvingPayment\\\" _Value=\\\"6\\\" /&gt;&lt;_DATA_SET _Name=\\\"RevolvingPastDue\\\" _Value=\\\"0\\\" /&gt;&lt;_DATA_SET _Name=\\\"RevolvingHighCredit\\\" _Value=\\\"19200\\\" /&gt;&lt;_DATA_SET _Name=\\\"UnknownCount\\\" _Value=\\\"0\\\" /&gt;&lt;_DATA_SET _Name=\\\"UnknownBalance\\\" _Value=\\\"0\\\" /&gt;&lt;_DATA_SET _Name=\\\"UnknownPayment\\\" _Value=\\\"0\\\" /&gt;&lt;_DATA_SET _Name=\\\"UnknownPastDue\\\" _Value=\\\"0\\\" /&gt;&lt;_DATA_SET _Name=\\\"UnknownHighCredit\\\" _Value=\\\"0\\\" /&gt;&lt;_DATA_SET _Name=\\\"TotalLiabilityCount\\\" _Value=\\\"14\\\" /&gt;&lt;_DATA_SET _Name=\\\"TotalLiabilityBalance\\\" _Value=\\\"28632\\\" /&gt;&lt;_DATA_SET _Name=\\\"TotalLiabilityPayment\\\" _Value=\\\"539\\\" /&gt;&lt;_DATA_SET _Name=\\\"TotalLiabilityPastDue\\\" _Value=\\\"0\\\" /&gt;&lt;_DATA_SET _Name=\\\"TotalLiabilityHighCredit\\\" _Value=\\\"50406\\\" /&gt;&lt;/CREDIT_SUMMARY&gt;&lt;CREDIT_SUMMARY BorrowerID=\\\"PC\\\" _Name=\\\"MLDerogatorySummary\\\"&gt;&lt;_DATA_SET _Name=\\\"TotalSecuredLoanBalance\\\" _Value=\\\"28626\\\" /&gt;&lt;_DATA_SET _Name=\\\"TotalUnsecuredLoanBalance\\\" _Value=\\\"6\\\" /&gt;&lt;_DATA_SET _Name=\\\"TotalHighCredit\\\" _Value=\\\"50406\\\" /&gt;&lt;_DATA_SET _Name=\\\"DebtHighCredit\\\" _Value=\\\"57%\\\" /&gt;&lt;_DATA_SET _Name=\\\"Day30\\\" _Value=\\\"0\\\" /&gt;&lt;_DATA_SET _Name=\\\"Day60\\\" _Value=\\\"0\\\" /&gt;&lt;_DATA_SET _Name=\\\"Day90\\\" _Value=\\\"0\\\" /&gt;&lt;_DATA_SET _Name=\\\"DerogOtherCount\\\" _Value=\\\"0\\\" /&gt;&lt;_DATA_SET _Name=\\\"LiabilitySatisfactoryCount\\\" _Value=\\\"14\\\" /&gt;&lt;_DATA_SET _Name=\\\"LiabilityBankruptcyCount\\\" _Value=\\\"0\\\" /&gt;&lt;_DATA_SET _Name=\\\"LiabilityCollectionCount\\\" _Value=\\\"0\\\" /&gt;&lt;_DATA_SET _Name=\\\"LiabilityChargeOffCount\\\" _Value=\\\"0\\\" /&gt;&lt;_DATA_SET _Name=\\\"LiabilityCurrentAdverseCount\\\" _Value=\\\"0\\\" /&gt;&lt;_DATA_SET _Name=\\\"LiabilityPreviousAdverseCount\\\" _Value=\\\"0\\\" /&gt;&lt;_DATA_SET _Name=\\\"InquiryCount\\\" _Value=\\\"4\\\" /&gt;&lt;_DATA_SET _Name=\\\"PublicRecordCount\\\" _Value=\\\"0\\\" /&gt;&lt;/CREDIT_SUMMARY&gt;&lt;/CREDIT_RESPONSE&gt;&lt;/RESPONSE_DATA&gt;&lt;STATUS _Name=\\\"MLStatus\\\" _Description=\\\"READY\\\" /&gt;&lt;/RESPONSE&gt;\\r\\n&lt;/MISMO&gt;\\r\\n\"\n}\n</code></pre>","event":[{"listen":"prerequest","script":{"id":"54c871c2-27d1-492c-a020-9c3da4296ee7","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"8aba6e15-6f1a-43b9-97e0-897511c4469b","type":"text/javascript","exec":[""]}}],"_postman_id":"bb5410b0-2098-4efc-8adc-8cd74c1d9553","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"28a4ef68-868e-4848-8a0a-3713663622a1","id":"28a4ef68-868e-4848-8a0a-3713663622a1","name":"Search Results","type":"folder"}}},{"name":"EDUCATION_VERIFICATION","item":[{"name":"EducationVerificationInfo","item":[],"id":"768a9acb-ea17-4959-943d-de0e94bb79f2","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Data Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>ssn</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>datesClaimed</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>degreeClaimed</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>majorClaimed</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>gpaClaimed</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>honorsClaimed</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"2aa9368a-bda9-4fa8-b51e-89e835e39296","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"098fd59d-e6e2-44e7-9311-89add72536c1","type":"text/javascript","exec":[""]}}],"_postman_id":"768a9acb-ea17-4959-943d-de0e94bb79f2","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"28a4ef68-868e-4848-8a0a-3713663622a1","id":"28a4ef68-868e-4848-8a0a-3713663622a1","name":"Search Results","type":"folder"}}}],"id":"2b990f0e-de89-43d0-a389-3937ab765ee3","description":"<p>In addition to the fields in <a href=\"#9cc0e1b0-1fc4-4a09-b6ac-1afc7885e35c\">VerificationResult</a>, also contains the following:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Data Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>institution</strong></td>\n<td><em><a href=\"#4261a879-6783-49af-a5d6-2ba95864b857\">Verifier</a></em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>contact</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>educationSubject</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>attendingName</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>institutionProvidedInfo</strong></td>\n<td><em><a href=\"#19292515-482a-4d4a-aac4-758c659f3203\">EducationVerificationInfo</a></em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>subjectProvidedInfo</strong></td>\n<td><em><a href=\"#19292515-482a-4d4a-aac4-758c659f3203\">EducationVerificationInfo</a></em></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><p>Example Results:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"verificationResponse\": \"Yes\",\n  \"subject\": {\n        \"fullName\": \"DOE, JOHN\"\n  },\n  \"questionsAnswers\": {\n        \"Is there a limit to how much living I can live with my life?\": \"Long story short. It all boils down to lobster broils.\"\n  },\n  \"notes\": \"Verified By: NSC 002259 - 121243274&lt;br /&gt;Current Enrollment: No&lt;br /&gt;Comments: Old Spice gives student rash.&lt;br /&gt;Verified By: NSC 002259 - 121243274\",\n  \"institution\": {\n        \"name\": \"MY COLLEGE\",\n        \"contactInfo\": {\n              \"phoneNumbers\": [\n                    \"80154545454\"\n              ],\n              \"email\": \"college@college.com\"\n        },\n        \"address\": {\n              \"streetOne\": \"123123 BLAH\",\n              \"city\": \"SALT LAKE CITY\",\n              \"stateOrProvince\": \"UT\",\n              \"postalCode\": \"84118\"\n        }\n  },\n  \"attendingName\": \"JONATHAN DOE\",\n  \"institutionProvidedInfo\": {\n        \"datesClaimed\": \"09/04/2002 - 04/27/2015\",\n        \"degreeClaimed\": \"BACHELOR OF SCIENCE\",\n        \"majorClaimed\": \"BIOLOGY 260101\",\n        \"gpaClaimed\": \"3.4\",\n        \"honorsClaimed\": \"No\"\n  },\n  \"subjectProvidedInfo\": {\n        \"ssn\": \"123-12-3123\",\n        \"datesClaimed\": \"JAN 2005 TO JAN 2009\",\n        \"degreeClaimed\": \"BACHELOR OF SCIENCE\",\n        \"majorClaimed\": \"BIOLOGY\",\n        \"gpaClaimed\": \"4.5\",\n        \"honorsClaimed\": \"Yes\"\n  }\n}\n</code></pre>","event":[{"listen":"prerequest","script":{"id":"2526b5f1-dce1-493e-aa50-00271dd07710","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"944883f0-a9d6-4dc2-9cb9-4f674f699663","type":"text/javascript","exec":[""]}}],"_postman_id":"2b990f0e-de89-43d0-a389-3937ab765ee3","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"28a4ef68-868e-4848-8a0a-3713663622a1","id":"28a4ef68-868e-4848-8a0a-3713663622a1","name":"Search Results","type":"folder"}}},{"name":"EMPLOYMENT_VERIFICATION","item":[{"name":"EmploymentRecord","item":[],"id":"8b56b7f5-53ce-4dbb-ad7b-62637b111409","description":"<p>In addition to all the fields in <a href=\"#9cc0e1b0-1fc4-4a09-b6ac-1afc7885e35c\">VerificationResult</a>, also contains the following:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Data Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>employer</strong></td>\n<td><em><a href=\"#4261a879-6783-49af-a5d6-2ba95864b857\">Verifier</a></em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>employerProvidedInfo</strong></td>\n<td><em><a href=\"#ebf4dc68-0c75-4dbc-8086-039011a72e94\">EmploymentVerificationInfo</a></em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>subjectProvidedInfo</strong></td>\n<td><em><a href=\"#ebf4dc68-0c75-4dbc-8086-039011a72e94\">EmploymentVerificationInfo</a></em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>supervisor</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>verifiedBy</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>verifiedDate</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>verifiedHow</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"7ae23700-a17d-42cc-bdd4-857b67b4c74c","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"44889090-b764-43b4-8c9c-6949f21e3d23","type":"text/javascript","exec":[""]}}],"_postman_id":"8b56b7f5-53ce-4dbb-ad7b-62637b111409","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"28a4ef68-868e-4848-8a0a-3713663622a1","id":"28a4ef68-868e-4848-8a0a-3713663622a1","name":"Search Results","type":"folder"}}},{"name":"EmploymentVerificationInfo","item":[],"id":"5cbd2cbd-55ba-437b-959e-417e97b669cd","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Data Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>position</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>hireDate</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>endDate</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>wageSalary</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>typeStatus</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>reasonForLeaving</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"9be22405-db5d-4796-8c96-46ab71c014fc","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"44a6da57-597c-4412-8f4c-5a475484a65f","type":"text/javascript","exec":[""]}}],"_postman_id":"5cbd2cbd-55ba-437b-959e-417e97b669cd","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"28a4ef68-868e-4848-8a0a-3713663622a1","id":"28a4ef68-868e-4848-8a0a-3713663622a1","name":"Search Results","type":"folder"}}}],"id":"032b8a73-af07-4cd0-b6d7-e0f8d5395dc1","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Data Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>records</strong></td>\n<td><em>List&lt;<a href=\"#19b21a12-bd01-447d-aca0-0021321f8fea\">EmploymentRecord</a>&gt;</em></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><p>Example Results:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"records\": [\n        {\n              \"verificationResponse\": \"Yes\",\n              \"subject\": {\n                    \"fullName\": \"DOE, JOHN\"\n              },\n              \"notes\": \"Eligible For Rehire: Yes&lt;br /&gt;Comments: No additional comments.\",\n              \"employer\": {\n                    \"name\": \"EMPLOYER ABC\",\n                    \"contactInfo\": {\n                          \"phoneNumbers\": [\n                                \"8015645464\"\n                          ],\n                          \"faxNumber\": \"8015555555\",\n                          \"email\": \"employer@email.com\"\n                    },\n                    \"address\": {\n                          \"streetOne\": \"123 BROADWAY\",\n                          \"city\": \"BEVERLY HILLS\",\n                          \"stateOrProvince\": \"CA\"\n                    }\n              },\n              \"employerProvidedInfo\": {\n                    \"position\": \"Lead Fork Truck Rigger\",\n                    \"hireDate\": \"02/15/2012\",\n                    \"endDate\": \"09/17/2015\",\n                    \"wageSalary\": \"$25 Hourly\",\n                    \"typeStatus\": \"Part-time\",\n                    \"reasonForLeaving\": \"The reference stated that the applicant was relocating to a different country.\"\n              },\n              \"subjectProvidedInfo\": {\n                    \"position\": \"Lead Fork Truck Rigger\",\n                    \"hireDate\": \"FEB 2012\",\n                    \"wageSalary\": \"25/Hourly\",\n                    \"typeStatus\": \"Part-time\"\n              },\n              \"supervisor\": \"Mr Testmon\",\n              \"verifiedBy\": \"George Testmon\"\n        }\n  ]\n}\n</code></pre>","event":[{"listen":"prerequest","script":{"id":"f00a970c-4712-40be-9d92-6f2c6cd7977b","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"b076bd35-9e04-4b3e-990d-3fe5844238ce","type":"text/javascript","exec":[""]}}],"_postman_id":"032b8a73-af07-4cd0-b6d7-e0f8d5395dc1","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"28a4ef68-868e-4848-8a0a-3713663622a1","id":"28a4ef68-868e-4848-8a0a-3713663622a1","name":"Search Results","type":"folder"}}},{"name":"FEDERAL_CIVIL_RECORD","item":[],"id":"1b20d803-425e-4108-af8b-8b452a8fb0e8","description":"<p>See <a href=\"#159e4bd2-c789-48e1-b6a4-0d11d11d441a\">CivilResult</a></p>\n<p>Example Results:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"records\": [\n        {\n              \"caseNumber\": \"ABC123\",\n              \"type\": \"Serious\",\n              \"jurisdiction\": \"NATIONWIDE\",\n              \"fileDate\": \"2018-02-01\",\n              \"comments\": \"Unknown\",\n              \"dispositionInfo\": {\n                    \"disposition\": \"GUILTY\",\n                    \"date\": \"2018-02-02\"\n              },\n              \"defendants\": [\n                    {\n                          \"fullName\": \"JOHN DOE\"\n                    }\n              ],\n              \"plaintiffs\": [\n                    {\n                          \"fullName\": \"UNITED STATES OF AMERICA\"\n                    }\n              ]\n        }\n  ]\n}\n</code></pre>","event":[{"listen":"prerequest","script":{"id":"39fa1d4e-a8ba-4e2e-81cf-5838531eb185","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"ae4fc4ef-4091-416c-86c8-cb9eddec0767","type":"text/javascript","exec":[""]}}],"_postman_id":"1b20d803-425e-4108-af8b-8b452a8fb0e8","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"28a4ef68-868e-4848-8a0a-3713663622a1","id":"28a4ef68-868e-4848-8a0a-3713663622a1","name":"Search Results","type":"folder"}}},{"name":"FEDERAL_CRIMINAL_RECORD","item":[],"id":"4bbec138-44f0-42d2-a790-00eb5e97b8c2","description":"<p>See <a href=\"#d4c1d7b5-59ee-4f11-840c-8b86a9c83422\">CriminalResult</a></p>\n<p>Example Results:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"jurisdictionsSearched\": \"UTAH\",\n  \"records\": [\n        {\n              \"subject\": {\n                    \"fullName\": \"JOHN DOE\",\n                    \"dateOfBirth\": \"XXXX-12-12\",\n                    \"other\": {\n                          \"Other Identifiers\": \"; DL Number: 12345678; SSN: XXX-XX-3123\"\n                    }\n              },\n              \"caseNumber\": \"135523\",\n              \"jurisdiction\": \"UTAH\",\n              \"offenses\": [\n                    {\n                          \"type\": \"TRAFFIC\",\n                          \"countOffense\": \"DWLR NOT IMPAIRED REV (STATUTE: 20-28(A))\",\n                          \"offenseDate\": \"2016-01-12\",\n                          \"comments\": \"DA INITIALS: SML; METHOD OF DISPOSITION: DISMISSAL W/O LEAVE;; AdditionalInfo: COURT TYPE: CRIMINAL DISTRICT COURT; AdditionalInfo: 2016-05-13\",\n                          \"dispositionInfo\": {\n                                \"disposition\": \"Description: DISMISSAL W/O LEAVE\",\n                                \"date\": \"2016-11-03\"\n                          }\n                    }\n              ]\n        }\n  ]\n}\n</code></pre>","event":[{"listen":"prerequest","script":{"id":"121e4cc1-a110-4c1d-937e-ec9d85bdcea5","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"323c61f4-bbde-4ba5-af2e-01c5e1595e8d","type":"text/javascript","exec":[""]}}],"_postman_id":"4bbec138-44f0-42d2-a790-00eb5e97b8c2","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"28a4ef68-868e-4848-8a0a-3713663622a1","id":"28a4ef68-868e-4848-8a0a-3713663622a1","name":"Search Results","type":"folder"}}},{"name":"GLOBAL_SECURITY_WATCH","item":[],"id":"c7661b01-af84-4e48-b55c-4f0e7ca05999","description":"<p>See <a href=\"#d4c1d7b5-59ee-4f11-840c-8b86a9c83422\">CriminalResult</a></p>\n<p>Example Results:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"records\": [\n        {\n              \"subject\": {\n                    \"fullName\": \"DOE, JOHN\",\n                    \"dateOfBirth\": \"1980-12-12\",\n                    \"addresses\": [\n                          {\n                                \"country\": \"USA\"\n                          }\n                    ]\n              },\n              \"provider\": \"Texas Health and Human Services Commission Medicaid Exclusion List\",\n              \"judgementInfo\": {},\n              \"offenses\": [\n                    {\n                          \"description\": \"UNSPECIFIED\",\n                          \"details\": [\n                                {\n                                      \"origin\": \"Crime\",\n                                      \"supplements\": {\n                                            \"Occupation\": \"TEST\",\n                                            \"License Number\": \"000000\",\n                                            \"Start Date\": \"2014-06-16\",\n                                            \"Address Date\": \"2014-06-16\",\n                                            \"Web Comments\": \"OTHER\"\n                                      }\n                                }\n                          ]\n                    }\n              ]\n        }\n  ]\n}\n</code></pre>","event":[{"listen":"prerequest","script":{"id":"89daee5f-dd74-478d-b684-68b68debb058","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"f02c7c18-5400-4ddd-893b-efdce0cd7194","type":"text/javascript","exec":[""]}}],"_postman_id":"c7661b01-af84-4e48-b55c-4f0e7ca05999","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"28a4ef68-868e-4848-8a0a-3713663622a1","id":"28a4ef68-868e-4848-8a0a-3713663622a1","name":"Search Results","type":"folder"}}},{"name":"HEALTHCARE_COMPLIANCE","item":[{"name":"HealthcareRecord","item":[],"id":"e2e66d91-a84c-4c6c-8a28-c45c62c47ea2","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Data Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>subject</strong></td>\n<td><em><a href=\"#eb2c7d8a-0031-465b-8844-10f0bde3ed93\">Subject</a></em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>source</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>sourceType</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>jurisdiction</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>providerType</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>verifiedStatus</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>actionText</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>sanctionType</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>sanctionDate</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>upin</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>specialty</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>occupation</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>comments</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"b35e4286-236f-45bc-8553-02367b8f63ef","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"a3742124-682d-4564-a9c7-4da96a28ef6e","type":"text/javascript","exec":[""]}}],"_postman_id":"e2e66d91-a84c-4c6c-8a28-c45c62c47ea2","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"28a4ef68-868e-4848-8a0a-3713663622a1","id":"28a4ef68-868e-4848-8a0a-3713663622a1","name":"Search Results","type":"folder"}}}],"id":"300c9bf4-28fd-46c7-90db-070da218f3a9","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Data Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>records</strong></td>\n<td><em>List&lt;<a href=\"#808774c3-35c4-4ca4-bdee-9ecb5c38ad33\">HealthcareRecord</a>&gt;</em></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><p>Example Results:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"records\": [\n        {\n              \"subject\": {},\n              \"sourceType\": \"STATE EXCLUSION\",\n              \"verifiedStatus\": \"UNVERIFIED\",\n              \"sanctionType\": \"Other\",\n              \"sanctionDate\": \"2014-6-16\"\n        },\n        {\n              \"sourceType\": \"FEDERAL EXCLUSION\",\n              \"verifiedStatus\": \"UNVERIFIED\",\n              \"sanctionType\": \"Administrative Action\"\n        }\n  ]\n}\n</code></pre>","event":[{"listen":"prerequest","script":{"id":"5cc1c331-f25f-4ebd-883d-78a70002eef9","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"4b83c406-cb80-4a7d-95cd-fd228f084cf7","type":"text/javascript","exec":[""]}}],"_postman_id":"300c9bf4-28fd-46c7-90db-070da218f3a9","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"28a4ef68-868e-4848-8a0a-3713663622a1","id":"28a4ef68-868e-4848-8a0a-3713663622a1","name":"Search Results","type":"folder"}}},{"name":"IDENTITY_DEVELOPMENT_CUSTOM","item":[],"id":"bcc931b1-d46d-45fb-b83b-672d5b91f8d0","description":"<p>See <a href=\"#e1952f2e-de0c-4556-bdd3-fe3f463f4b3d\">CustomResult</a></p>\n","_postman_id":"bcc931b1-d46d-45fb-b83b-672d5b91f8d0","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"28a4ef68-868e-4848-8a0a-3713663622a1","id":"28a4ef68-868e-4848-8a0a-3713663622a1","name":"Search Results","type":"folder"}}},{"name":"INTERNATIONAL_CRIMINAL_RECORD","item":[],"id":"c3828daf-3a32-4618-a01f-d85fff1e96d8","description":"<p>See <a href=\"#d4c1d7b5-59ee-4f11-840c-8b86a9c83422\">CriminalResult</a></p>\n<p>Example Results:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"records\": [\n        {\n              \"subject\": {\n                    \"fullName\": \"JOHN DOE\",\n                    \"dob\": \"01/01/1988\",\n                    \"contactInfo\": {},\n                    \"other\": {\n                          \"Other Identifiers\": \"HAIR: BROWN\"\n                    }\n              },\n              \"caseNumber\": \"ABC123\",\n              \"jurisdiction\": \"AFGHANISTAN\",\n              \"fileDate\": \"01/02/2019\",\n              \"other\": {\n                    \"Additional Information\": \"None to report\"\n              },\n              \"offenses\": [\n                    {\n                          \"type\": \"The Serious Type\",\n                          \"countOffense\": \"DRUG TRAFFICKING\",\n                          \"comments\": \"NONE\",\n                          \"sentenceInfo\": {\n                                \"sentence\": \"SLAP ON WRIST\"\n                          },\n                          \"dispositionInfo\": {\n                                \"disposition\": \"GUILTY\",\n                                \"date\": \"01/03/2019\"\n                          }\n                    }\n              ]\n        }\n  ]\n}\n</code></pre>","event":[{"listen":"prerequest","script":{"id":"043976aa-47ee-4161-8f0b-660c15816560","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"6bdb9f06-d65c-4864-b821-6253ed46c190","type":"text/javascript","exec":[""]}}],"_postman_id":"c3828daf-3a32-4618-a01f-d85fff1e96d8","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"28a4ef68-868e-4848-8a0a-3713663622a1","id":"28a4ef68-868e-4848-8a0a-3713663622a1","name":"Search Results","type":"folder"}}},{"name":"INVESTIGATIVE_CUSTOM","item":[],"id":"cfc97ec6-e2fd-4264-8251-fd36535b8592","description":"<p>See <a href=\"#e1952f2e-de0c-4556-bdd3-fe3f463f4b3d\">CustomResult</a></p>\n","_postman_id":"cfc97ec6-e2fd-4264-8251-fd36535b8592","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"28a4ef68-868e-4848-8a0a-3713663622a1","id":"28a4ef68-868e-4848-8a0a-3713663622a1","name":"Search Results","type":"folder"}}},{"name":"INSTANT_DRIVING","item":[],"id":"18a8f204-c793-451b-bf55-461ab04a39af","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Data Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>records</strong></td>\n<td><em>List&lt;<a href=\"#4f597a3a-d3dc-4df2-b95a-216afbe09951\">DrivingRecord</a>&gt;</em></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><p>Example Results:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"records\": [\n        {\n              \"licenseState\": \"CA\",\n              \"licenseNumber\": \"D6543217\",\n              \"licenseInfos\": [\n                    {\n                          \"status\": \"VALID\",\n                          \"classDescription\": \"Class C Non-Commercial\",\n                          \"expirationDate\": \"2019-01-01\",\n                          \"issueDate\": \"2001-01-01\",\n                          \"restrictions\": [\n                                \"01 - Must wear corrective lenses when driving.\"\n                          ],\n                          \"class\": \"Class C Non-Commercial\"\n                    }\n              ],\n              \"subject\": {\n                    \"fullName\": \"DOE, JOHN\",\n                    \"dateOfBirth\": \"1980-12-12\",\n                    \"gender\": \"M\",\n                    \"height\": \"511\",\n                    \"weight\": \"185\",\n                    \"hairColor\": \"BROWN\",\n                    \"eyeColor\": \"GREEN\",\n                    \"addresses\": [\n                          null\n                    ]\n              },\n              \"other\": {\n                    \"Report URL Address\": \"https://ford.com\",\n                    \"Report Message\": \"NO ENTRIES FOUND FOR THIS PERSON\",\n                    \"MVR Status\": \"MVR found\",\n                    \"MVR History Length\": \"7 Years\",\n                    \"Back Label\": \"e6c2ads1-12654108\",\n                    \"MVR Score\": \"An invalid driver license (unknown, cancelled, suspended, revoked, etc), or an MVR with less than 3 years history (or unknown), or a not clear MVR. (1)\"\n              },\n              \"messages\": [\n                    \"Approximate Year of Original Issued: 1900\",\n                    \"H - Health Questionnaire\"\n              ]\n        }\n  ]\n}\n</code></pre>","event":[{"listen":"prerequest","script":{"id":"cc945512-8f62-46d9-ae94-82de5be1bafb","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"d736a373-c838-40d7-96e7-51340187ca41","type":"text/javascript","exec":[""]}}],"_postman_id":"18a8f204-c793-451b-bf55-461ab04a39af","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"28a4ef68-868e-4848-8a0a-3713663622a1","id":"28a4ef68-868e-4848-8a0a-3713663622a1","name":"Search Results","type":"folder"}}},{"name":"NATIONAL_CRIMINAL_DATABASE","item":[],"id":"f0826d9e-f5d8-48f7-a01b-7c3b59fd43e0","description":"<p>See <a href=\"#d4c1d7b5-59ee-4f11-840c-8b86a9c83422\">CriminalResult</a></p>\n<p>Example Results:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"jurisdictionsSearched\": \"ALDOC, AKAOC, AZDOC, AZAOC, AZMaricopa Justice Courts, AZPima Superior, AZMaricopa Superior, AZMaricopa Gilbert Municipal, AZPima Justice Courts, ARDOC, ARAOC, CAOrange Superior, ....... WAAdmin Office of Superiors, WAAOC Superior Index, WAPierce Superior, WVDOC, WIDOC, WIAOC, Sex Offender Registry, P.R.I.O.R.S, Foreign Nationals\",\n  \"records\": [\n        {\n              \"subject\": {\n                    \"fullName\": \"MESS, HANK\",\n                    \"dateOfBirth\": \"19710427\",\n                    \"gender\": \"MALE\",\n                    \"race\": \"WHITE\",\n                    \"height\": \"5 9\",\n                    \"weight\": \"165\",\n                    \"hairColor\": \"BROWN\",\n                    \"eyeColor\": \"BROWN\",\n                    \"addresses\": [\n                          {\n                                \"country\": \"USA\"\n                          }\n                    ]\n              },\n              \"provider\": \"Florida Dept of Corrections\",\n              \"stateAbbreviation\": \"FL\",\n              \"judgementInfo\": {},\n              \"offenses\": [\n                    {\n                          \"type\": \"FELONY\",\n                          \"offenseDate\": \"2017-03-05\",\n                          \"description\": \"COCAINE POSSESSION\",\n                          \"sentenceInfo\": {\n                                \"date\": \"2017\"\n                          },\n                          \"dispositionInfo\": {},\n                          \"details\": [\n                                {\n                                      \"origin\": \"Crime\",\n                                      \"supplements\": {\n                                            \"Community Sentence Date\": \"20061122\",\n                                            \"Custody\": \"SUPERVISION TYPE: DRUG OFFENDER PROBATION\",\n                                            \"Data Type\": \"1\",\n                                            \"Current As Of Date\": \"20090401\",\n                                            \"Community Case Number\": \"1110600525\",\n                                            \"InCustody Date\": \"20061122\",\n                                            \"Classification Status\": \"SUSPENSE\",\n                                            \"County\": \"PUTNAM\",\n                                            \"Community Supervision Length\": \"0Y 18M 0D\",\n                                            \"Verified Address\": \"130 ORIE GRIFFIN BLVD PUTNAM COUNTY JAIL PALATKA, FL 32177\"\n                                      }\n                                },\n                                {\n                                      \"origin\": \"Arrest\",\n                                      \"supplements\": {\n                                            \"Scheduled Termination Date\": \"20170521\",\n                                            \"Current Location\": \"DAYTONA BEACH\"\n                                      }\n                                }\n                          ]\n                    }\n              ]\n        },\n        {\n              \"subject\": {\n                    \"fullName\": \"MESS, HANK\",\n                    \"dateOfBirth\": \"19710427\",\n                    \"addresses\": [\n                          {\n                                \"streetOne\": \"136 SANTA BARBARA STREET\",\n                                \"city\": \"EAST PALATKA\",\n                                \"stateOrProvince\": \"FL\",\n                                \"postalCode\": \"321310000\",\n                                \"country\": \"USA\"\n                          }\n                    ]\n              },\n              \"provider\": \"Putnam County\",\n              \"stateAbbreviation\": \"FL\",\n              \"judgementInfo\": {},\n              \"offenses\": [\n                    {\n                          \"type\": \"MISDEMEANOR\",\n                          \"offenseDate\": \"2015-03-05\",\n                          \"description\": \"ISSUING A WORTHLESS CHECK\",\n                          \"fileDate\": \"20030310\",\n                          \"sentenceInfo\": {\n                                \"date\": \"2003\"\n                          },\n                          \"dispositionInfo\": {\n                                \"description\": \"ADJUDICATED GUILTY/DELINQUENT\"\n                          },\n                          \"details\": [\n                                {\n                                      \"origin\": \"Crime\",\n                                      \"supplements\": {\n                                            \"Case Number\": \"11103001093YYYA\",\n                                            \"Court Decision Date\": \"20030625\",\n                                            \"Statute Code\": \"2208\",\n                                            \"Prosecution Decision Date\": \"20030310\"\n                                      }\n                                }\n                          ]\n                    }\n              ]\n        },\n        {\n              \"subject\": {\n                    \"fullName\": \"MESS, HANK\",\n                    \"dateOfBirth\": \"19710427\",\n                    \"addresses\": [\n                          {\n                                \"streetOne\": \"136 SANTA BARBARA STREET\",\n                                \"city\": \"EAST PALATKA\",\n                                \"stateOrProvince\": \"FL\",\n                                \"postalCode\": \"321310000\",\n                                \"country\": \"USA\"\n                          }\n                    ]\n              },\n              \"provider\": \"Putnam County\",\n              \"stateAbbreviation\": \"FL\",\n              \"judgementInfo\": {},\n              \"offenses\": [\n                    {\n                          \"type\": \"FELONY\",\n                          \"offenseDate\": \"2015-03-05\",\n                          \"description\": \"GRAND THEFT AUTO\",\n                          \"fileDate\": \"20160111\",\n                          \"sentenceInfo\": {\n                                \"date\": \"2016\"\n                          },\n                          \"dispositionInfo\": {\n                                \"description\": \"DROPPED/ABANDONED BY PROSECUTOR\"\n                          },\n                          \"details\": [\n                                {\n                                      \"origin\": \"Crime\",\n                                      \"supplements\": {\n                                            \"Case Number\": \"11106000089CFMX\",\n                                            \"Statute Code\": \"3255\",\n                                            \"Prosecution Decision Date\": \"20161201\"\n                                      }\n                                }\n                          ]\n                    },\n                    {\n                          \"type\": \"MISDEMEANOR\",\n                          \"offenseDate\": \"2005-03-05\",\n                          \"description\": \"CRIMINAL MISCHIEF MORE THAN $200 LESS THAN $1000\",\n                          \"fileDate\": \"20160111\",\n                          \"sentenceInfo\": {},\n                          \"dispositionInfo\": {\n                                \"description\": \"DROPPED/ABANDONED BY PROSECUTOR\"\n                          },\n                          \"details\": [\n                                {\n                                      \"origin\": \"Crime\",\n                                      \"supplements\": {\n                                            \"Case Number\": \"11106000089CFMX\",\n                                            \"Statute Code\": \"1957\",\n                                            \"Prosecution Decision Date\": \"20061201\"\n                                      }\n                                }\n                          ]\n                    }\n              ]\n        },\n        {\n              \"subject\": {\n                    \"fullName\": \"MESS, HANK\",\n                    \"dateOfBirth\": \"19710427\",\n                    \"addresses\": [\n                          {\n                                \"streetOne\": \"136 SANTA BARBARA STREET\",\n                                \"city\": \"EAST PALATKA\",\n                                \"stateOrProvince\": \"FL\",\n                                \"postalCode\": \"321310000\",\n                                \"country\": \"USA\"\n                          }\n                    ]\n              },\n              \"provider\": \"Putnam County\",\n              \"stateAbbreviation\": \"FL\",\n              \"judgementInfo\": {},\n              \"offenses\": [\n                    {\n                          \"type\": \"FELONY\",\n                          \"offenseDate\": \"2005-03-05\",\n                          \"description\": \"POSSESSION OF COCAINE\",\n                          \"fileDate\": \"20060307\",\n                          \"sentenceInfo\": {},\n                          \"dispositionInfo\": {\n                                \"description\": \"ADJUDICATED GUILTY/DELINQUENT\"\n                          },\n                          \"details\": [\n                                {\n                                      \"origin\": \"Crime\",\n                                      \"supplements\": {\n                                            \"Case Number\": \"11106000525CFMX\",\n                                            \"Court Decision Date\": \"20061122\",\n                                            \"Statute Code\": \"2620\",\n                                            \"Prosecution Decision Date\": \"20060314\"\n                                      }\n                                }\n                          ]\n                    },\n                    {\n                          \"type\": \"MISDEMEANOR\",\n                          \"offenseDate\": \"2005-03-05\",\n                          \"description\": \"USE OR POSSESSION OF DRUG PARAPHERNALIA\",\n                          \"fileDate\": \"20060307\",\n                          \"sentenceInfo\": {},\n                          \"dispositionInfo\": {\n                                \"description\": \"NO ACTION TAKEN BY THE PROSECUTOR\"\n                          },\n                          \"details\": [\n                                {\n                                      \"origin\": \"Crime\",\n                                      \"supplements\": {\n                                            \"Case Number\": \"11106000525CFMX\",\n                                            \"Statute Code\": \"2465\",\n                                            \"Prosecution Decision Date\": \"20060314\"\n                                      }\n                                }\n                          ]\n                    }\n              ]\n        }\n  ]\n}\n</code></pre>","event":[{"listen":"prerequest","script":{"id":"d3788914-e5e6-425b-8fed-0c87057299c1","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"5e01bbd7-aaff-456b-8ebc-5f8eb1a345e9","type":"text/javascript","exec":[""]}}],"_postman_id":"f0826d9e-f5d8-48f7-a01b-7c3b59fd43e0","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"28a4ef68-868e-4848-8a0a-3713663622a1","id":"28a4ef68-868e-4848-8a0a-3713663622a1","name":"Search Results","type":"folder"}}},{"name":"NATIONAL_CRIMINAL_DATABASE_ALIAS","item":[{"name":"AddressInfo","item":[],"id":"37fa39ad-0936-45fa-9c2f-70a6e893fa6a","description":"<p>In addition to all fields in <a href=\"#eb2c7d8a-0031-465b-8844-10f0bde3ed93\">Subject</a>, also contains the following:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Data Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>verified</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>ageAtDeath</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>deathVerificationCode</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"37fa39ad-0936-45fa-9c2f-70a6e893fa6a","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"28a4ef68-868e-4848-8a0a-3713663622a1","id":"28a4ef68-868e-4848-8a0a-3713663622a1","name":"Search Results","type":"folder"}}}],"id":"e0b9392f-60d9-4c57-bafc-b6fc2d0ebfda","description":"<p>In addition to all fields in <a href=\"#d4c1d7b5-59ee-4f11-840c-8b86a9c83422\">CriminalResult</a>, also contains the following:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Data Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>nameVariationsSearched</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>ssnInfos</strong></td>\n<td><em>List&lt;<a href=\"#ccfeb9d9-57d4-41ca-9add-832e39a6c5b2\">SSNInfo</a>&gt;</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>addressInfos</strong></td>\n<td><em>List&lt;<a href=\"#1a882fc8-44d4-4db8-a1cc-e3d2a8df811b\">AddressInfo</a>&gt;</em></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><p>Example Results:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"jurisdictionsSearched\": \"AL-DOC, AK-AOC, AZ-DOC, AZ-AOC, AZ-Maricopa - Justice Courts, AZ-Pima - Superior, AZ-Maricopa - Superior, AZ-Maricopa - Gilbert Municipal, .... WI-AOC, Sex Offender Registry, P.R.I.O.R.S, Foreign Nationals\",\n  \"records\": [\n        {\n              \"subject\": {\n                    \"fullName\": \"MESS, HANK\",\n                    \"dateOfBirth\": \"1971-04-27\",\n                    \"gender\": \"MALE\",\n                    \"race\": \"WHITE\",\n                    \"height\": \"5 9\",\n                    \"weight\": \"165\",\n                    \"hairColor\": \"BROWN\",\n                    \"eyeColor\": \"BROWN\",\n                    \"addresses\": [\n                          {\n                                \"country\": \"USA\"\n                          }\n                    ]\n              },\n              \"provider\": \"Florida Dept of Corrections\",\n              \"stateAbbreviation\": \"FL\",\n              \"judgementInfo\": {},\n              \"offenses\": [\n                    {\n                          \"type\": \"FELONY\",\n                          \"offenseDate\": \"2017-03-05\",\n                          \"description\": \"COCAINE - POSSESSION\",\n                          \"sentenceInfo\": {\n                                \"date\": \"2017\"\n                          },\n                          \"dispositionInfo\": {}\n                    }\n              ]\n        },\n        {\n              \"subject\": {\n                    \"fullName\": \"MESS, HANK\",\n                    \"dateOfBirth\": \"1971-04-27\",\n                    \"addresses\": [\n                          {\n                                \"streetOne\": \"136 SANTA BARBARA STREET\",\n                                \"city\": \"EAST PALATKA\",\n                                \"stateOrProvince\": \"FL\",\n                                \"postalCode\": \"32131-0000\",\n                                \"country\": \"USA\"\n                          }\n                    ]\n              },\n              \"provider\": \"Putnam County\",\n              \"stateAbbreviation\": \"FL\",\n              \"judgementInfo\": {},\n              \"offenses\": [\n                    {\n                          \"type\": \"MISDEMEANOR\",\n                          \"offenseDate\": \"2016-03-05\",\n                          \"description\": \"ISSUING A WORTHLESS CHECK\",\n                          \"sentenceInfo\": {},\n                          \"dispositionInfo\": {\n                                \"description\": \"ADJUDICATED GUILTY/DELINQUENT\"\n                          }\n                    }\n              ]\n        },\n        {\n              \"subject\": {\n                    \"fullName\": \"MESS, HANK\",\n                    \"dateOfBirth\": \"1971-04-27\",\n                    \"addresses\": [\n                          {\n                                \"streetOne\": \"136 SANTA BARBARA STREET\",\n                                \"city\": \"EAST PALATKA\",\n                                \"stateOrProvince\": \"FL\",\n                                \"postalCode\": \"32131-0000\",\n                                \"country\": \"USA\"\n                          }\n                    ]\n              },\n              \"provider\": \"Putnam County\",\n              \"stateAbbreviation\": \"FL\",\n              \"judgementInfo\": {},\n              \"offenses\": [\n                    {\n                          \"type\": \"FELONY\",\n                          \"offenseDate\": \"2017-03-05\",\n                          \"description\": \"GRAND THEFT AUTO\",\n                          \"sentenceInfo\": {},\n                          \"dispositionInfo\": {\n                                \"description\": \"DROPPED/ABANDONED BY PROSECUTOR\"\n                          }\n                    },\n                    {\n                          \"type\": \"MISDEMEANOR\",\n                          \"offenseDate\": \"2007-03-05\",\n                          \"description\": \"CRIMINAL MISCHIEF - MORE THAN $200 LESS THAN $1000\",\n                          \"sentenceInfo\": {},\n                          \"dispositionInfo\": {\n                                \"description\": \"DROPPED/ABANDONED BY PROSECUTOR\"\n                          }\n                    }\n              ]\n        },\n        {\n              \"subject\": {\n                    \"fullName\": \"MESS, HANK\",\n                    \"dateOfBirth\": \"1971-04-27\",\n                    \"addresses\": [\n                          {\n                                \"streetOne\": \"136 SANTA BARBARA STREET\",\n                                \"city\": \"EAST PALATKA\",\n                                \"stateOrProvince\": \"FL\",\n                                \"postalCode\": \"32131-0000\",\n                                \"country\": \"USA\"\n                          }\n                    ]\n              },\n              \"provider\": \"Putnam County\",\n              \"stateAbbreviation\": \"FL\",\n              \"judgementInfo\": {},\n              \"offenses\": [\n                    {\n                          \"type\": \"FELONY\",\n                          \"offenseDate\": \"2007-03-05\",\n                          \"description\": \"POSSESSION OF COCAINE\",\n                          \"sentenceInfo\": {},\n                          \"dispositionInfo\": {\n                                \"description\": \"ADJUDICATED GUILTY/DELINQUENT\"\n                          }\n                    },\n                    {\n                          \"type\": \"MISDEMEANOR\",\n                          \"offenseDate\": \"2007-03-05\",\n                          \"description\": \"USE OR POSSESSION OF DRUG PARAPHERNALIA\",\n                          \"sentenceInfo\": {},\n                          \"dispositionInfo\": {\n                                \"description\": \"NO ACTION TAKEN BY THE PROSECUTOR\"\n                          }\n                    }\n              ]\n        }\n  ],\n  \"nameVariationsSearched\": \"MESS HANK; HANK MESS; HANK M MESS\",\n  \"ssnInfos\": [\n        {\n              \"issuedLocation\": \"Oklahoma\",\n              \"deceased\": \"No\",\n              \"message\": \"Record\",\n              \"issuedDateRange\": \"1980-1981\"\n        }\n  ],\n  \"addressInfos\": [\n        {\n              \"fullName\": \"HANK M MESS\",\n              \"ssn\": \"333-22-XXXX\",\n              \"dateOfBirth\": \"1971-04-01\",\n              \"age\": \"39\",\n              \"addresses\": [\n                    {\n                          \"streetOne\": \"911 N DEADEND PLACE\",\n                          \"city\": \"MAPLEWOOD\",\n                          \"stateOrProvince\": \"NJ\",\n                          \"postalCode\": \"07040\",\n                          \"county\": \"ESSEX\",\n                          \"startDate\": \"2007-08\",\n                          \"endDate\": \"2007-08\"\n                    }\n              ],\n              \"aliases\": [\n                    {\n                          \"fullName\": \"MESS HANK\",\n                          \"dateOfBirth\": \"1971-04-01\"\n                    },\n                    {\n                          \"fullName\": \"MESSNER HANK\",\n                          \"dateOfBirth\": \"1971-04-01\"\n                    },\n                    {\n                          \"fullName\": \"HANK MESS\",\n                          \"dateOfBirth\": \"1971-04-01\"\n                    }\n              ],\n              \"contactInfo\": {\n                    \"phoneNumbers\": [\n                          \"5552546011\"\n                    ]\n              }\n        },\n        {\n              \"fullName\": \"HANK MESS\",\n              \"ssn\": \"333-22-XXXX\",\n              \"dateOfBirth\": \"1971-04-01\",\n              \"age\": \"39\",\n              \"addresses\": [\n                    {\n                          \"streetOne\": \"611 S LOSER ST\",\n                          \"city\": \"NEW YORK\",\n                          \"stateOrProvince\": \"NY\",\n                          \"postalCode\": \"10031\",\n                          \"county\": \"NEW YORK\",\n                          \"startDate\": \"2006-06\",\n                          \"endDate\": \"2006-06\"\n                    }\n              ],\n              \"aliases\": [\n                    {\n                          \"fullName\": \"HANK MESS\",\n                          \"dateOfBirth\": \"1971-04-01\"\n                    },\n                    {\n                          \"fullName\": \"MESS HANK\",\n                          \"dateOfBirth\": \"1971-04-01\"\n                    }\n              ]\n        }\n  ]\n}\n</code></pre>","event":[{"listen":"prerequest","script":{"id":"4f1e997c-8445-4d2e-abe8-08454b42b805","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"353c4b65-8031-4042-94f8-5ef682b383cb","type":"text/javascript","exec":[""]}}],"_postman_id":"e0b9392f-60d9-4c57-bafc-b6fc2d0ebfda","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"28a4ef68-868e-4848-8a0a-3713663622a1","id":"28a4ef68-868e-4848-8a0a-3713663622a1","name":"Search Results","type":"folder"}}},{"name":"NATIONAL_RENTAL_RECORD_DATABASE","item":[],"id":"4a24eb15-7011-4436-8dfe-bffdd8207a19","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Data Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>records</strong></td>\n<td>_List&lt;_<a href=\"##8067b045-3c05-47bc-b60a-3f1ce17d100f\"><i>RentalRecord</i></a><em>&gt;</em></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><p>Example Results:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"records\": [\n        {\n              \"subject\": {},\n              \"caseNumber\": \"003451LT\",\n              \"uniqueId\": \"4938A\",\n              \"courtName\": \"TAMPA DISTRICT COURT\",\n              \"type\": \"UNLAWFUL DETAINER\",\n              \"fileDate\": \"2009-05-23\",\n              \"dispositionInfo\": {\n                    \"disposition\": \"Civil Judgment\"\n              },\n              \"judgementInfo\": {\n                    \"amount\": \"POSSESSION ONLY\"\n              },\n              \"defendants\": [\n                    {\n                          \"fullName\": \"DOE, JOHN\",\n                          \"ssn\": \"123-12-3123\",\n                          \"addresses\": [\n                                {\n                                      \"streetOne\": \"9320 N JEFFERSON ST\",\n                                      \"city\": \"TAMPA\",\n                                      \"stateOrProvince\": \"FL\",\n                                      \"postalCode\": \"33602\"\n                                }\n                          ]\n                    }\n              ],\n              \"plaintiffs\": [\n                    {\n                          \"fullName\": \"SUNSHINE MOBILE HOME PARK\"\n                    }\n              ],\n              \"bookNumber\": \"10051\",\n              \"pageNumber\": \"1325\"\n        },\n        {\n              \"subject\": {},\n              \"caseNumber\": \"32589239\",\n              \"uniqueId\": \"3920A\",\n              \"courtName\": \"LOUDOUN DISTRICT COURT\",\n              \"type\": \"LANDLORD/TENANT\",\n              \"fileDate\": \"2010-03-05\",\n              \"dispositionInfo\": {\n                    \"disposition\": \"Civil New Filing\"\n              },\n              \"judgementInfo\": {\n                    \"amount\": \"$50\"\n              },\n              \"defendants\": [\n                    {\n                          \"fullName\": \"DOE, JOHN\",\n                          \"addresses\": [\n                                {\n                                      \"streetOne\": \"359 AUBURN ST\",\n                                      \"city\": \"ASHBURN\",\n                                      \"stateOrProvince\": \"VA\",\n                                      \"postalCode\": \"20148\"\n                                }\n                          ]\n                    }\n              ],\n              \"plaintiffs\": [\n                    {\n                          \"fullName\": \"SPRING HILL APARTMENTS\"\n                    }\n              ]\n        }\n  ]\n}\n\n</code></pre>","event":[{"listen":"prerequest","script":{"id":"6ec615e8-4319-491a-a5c0-75cb8aeeb2e0","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"778cbfb2-1f78-40c6-91ec-95e970c5654d","type":"text/javascript","exec":[""]}}],"_postman_id":"4a24eb15-7011-4436-8dfe-bffdd8207a19","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"28a4ef68-868e-4848-8a0a-3713663622a1","id":"28a4ef68-868e-4848-8a0a-3713663622a1","name":"Search Results","type":"folder"}}},{"name":"NATIONAL_RENTAL_RECORDS_PREMIUM","item":[],"id":"64f0bae2-417d-4735-9c6f-3350833f1906","description":"<p>Example Results:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"orderSearchGuid\": \"bf5db20e-68e9-409f-a0fc-a52bdf3fe1e6\",\n    \"status\": \"complete\",\n    \"type\": \"NATIONAL_RENTAL_RECORDS_PREMIUM\",\n    \"displayName\": \"National Rental Premium Records Database Search\",\n    \"displayValue\": \"NATIONWIDE (SAWAYN, ALESSIA)\",\n    \"modifiedDate\": 1710951467000,\n    \"result\": \"yes\",\n    \"flagged\": false,\n    \"pendingNotes\": null,\n    \"createdDate\": 1710951374000,\n    \"completedDate\": 1710951467000,\n    \"results\": {\n        \"records\": [\n            {\n                \"defendant\": {\n                    \"fullName\": \"MESS, HANK L\",\n                    \"address\": {\n                        \"streetOne\": \"5534 BLUE LAGOON LANE\",\n                        \"city\": \"LOS ANGELES\",\n                        \"stateOrProvince\": \"CA\",\n                        \"postalCode\": \"90001\",\n                        \"county\": \"LOS ANGELES\"\n                    }\n                },\n                \"plaintiff\": {\n                    \"fullName\": \"State Of California\"\n                },\n                \"caseNumber\": \"2019 CVG 037849\",\n                \"caseType\": \"CVG\",\n                \"courtLocation\": \"Orange County Municipal Court\",\n                \"courtURL\": \"https://www.example.com\",\n                \"referenceId\": \"1rey141pnt5v7zdw2hdjopzda\",\n                \"judgmentAmount\": \"$0\",\n                \"fileDate\": \"2023-01-14\",\n                \"disposedDate\": \"2018-06-29\"\n            },\n            {\n                \"defendant\": {\n                    \"fullName\": \"MESS, HANK L\",\n                    \"address\": {\n                        \"streetOne\": \"5534 BLUE LAGOON LANE\",\n                        \"city\": \"LOS ANGELES\",\n                        \"stateOrProvince\": \"CA\",\n                        \"postalCode\": \"90001\",\n                        \"county\": \"LOS ANGELES\"\n                    }\n                },\n                \"plaintiff\": {\n                    \"fullName\": \"State Of California\"\n                },\n                \"caseNumber\": \"2019 CVG 037849\",\n                \"caseType\": \"CVG\",\n                \"courtLocation\": \"Orange County Municipal Court\",\n                \"courtURL\": \"http://www.example2.com\",\n                \"referenceId\": \"1rey141pnt5v7zdw2hdjopzda\",\n                \"judgmentAmount\": \"$0\",\n                \"fileDate\": \"2023-04-14\",\n                \"disposedDate\": \"2018-06-29\"\n            },\n            {\n                \"defendant\": {\n                    \"fullName\": \"KURTZ, JACQUELINE\",\n                    \"address\": {\n                        \"streetOne\": \"5534 BLUE LAGOON LANE\",\n                        \"city\": \"HILLIARD\",\n                        \"stateOrProvince\": \"OH\",\n                        \"postalCode\": \"43026\",\n                        \"county\": \"FRANKLIN\"\n                    }\n                },\n                \"plaintiff\": {\n                    \"fullName\": \"OAKWOOD MANAGEMENT COMPANY\"\n                },\n                \"caseDisposition\": \"LANDLORD/TENANT FILING\",\n                \"caseNumber\": \"2018 CVG 021337\",\n                \"caseType\": \"CVG\",\n                \"courtLocation\": \"Franklin County Municipal Court\",\n                \"courtURL\": \"www.courtsrus.org\",\n                \"referenceId\": \"1rey141pnt5v7zdw2hdjopzda\",\n                \"judgmentAmount\": \"$0\",\n                \"fileDate\": \"2023-07-14\",\n                \"disposedDate\": \"2018-06-29\"\n            },\n            {\n                \"defendant\": {\n                    \"fullName\": \"KURTZ, JACQUELINE\",\n                    \"address\": {\n                        \"streetOne\": \"5534 BLUE LAGOON LANE\",\n                        \"city\": \"HILLIARD\",\n                        \"stateOrProvince\": \"OH\",\n                        \"postalCode\": \"43026\"\n                    }\n                },\n                \"plaintiff\": {\n                    \"fullName\": \"OAKWOOD MANAGEMENT COMPANY\"\n                },\n                \"caseNumber\": \"2018 CVG 021337\",\n                \"caseType\": \"CVG\",\n                \"courtLocation\": \"Franklin County Municipal Court\",\n                \"courtURL\": \"http://www.example.com\",\n                \"referenceId\": \"1rey141pnt5v7zdw2hdjopzda\",\n                \"judgmentAmount\": \"$20\",\n                \"caseComments\": \"these are case comments\",\n                \"customNote\": \"Some custom note\",\n                \"fileDate\": \"2023-09-14\",\n                \"disposedDate\": \"2023-06-29\"\n            }\n        ]\n    }\n}\n\n</code></pre>","_postman_id":"64f0bae2-417d-4735-9c6f-3350833f1906","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"28a4ef68-868e-4848-8a0a-3713663622a1","id":"28a4ef68-868e-4848-8a0a-3713663622a1","name":"Search Results","type":"folder"}}},{"name":"PERSON_SEARCH","item":[],"id":"b2a88b52-c1a8-4894-a62b-97b44ae87aca","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Data Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>records</strong></td>\n<td><em>List&lt;<a href=\"#eb2c7d8a-0031-465b-8844-10f0bde3ed93\">Subject</a>&gt;</em></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><p>Example Results:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"records\": [\n        {\n              \"firstName\": \"BOB\",\n              \"lastName\": \"BUILDER\",\n              \"addresses\": [\n                    {\n                          \"streetOne\": \"123 3RD AVE\",\n                          \"city\": \"WEST HAVEN\",\n                          \"stateOrProvince\": \"CT\",\n                          \"postalCode\": \"06516\",\n                          \"county\": \"NEW HAVEN\",\n                          \"startDate\": \"2013-10-05\",\n                          \"endDate\": \"2020-09-23\"\n                    }\n              ]\n        },\n        {\n              \"firstName\": \"DORA\",\n              \"lastName\": \"EXPLORER\",\n              \"addresses\": [\n                    {\n                          \"streetOne\": \"654 ESSEX CIR APT A\",\n                          \"city\": \"GUILDERLAND\",\n                          \"stateOrProvince\": \"NY\",\n                          \"postalCode\": \"12084\",\n                          \"county\": \"ALBANY\",\n                          \"startDate\": \"2007-03\",\n                          \"endDate\": \"2020-04-30\"\n                    }\n              ],\n              \"contactInfo\": {\n                    \"phoneNumbers\": [\n                          \"5557888778\"\n                    ]\n              }\n        }\n  ]\n}\n</code></pre>","event":[{"listen":"prerequest","script":{"id":"0a84c3ce-1aed-4bca-9f67-3ae4a8cdba62","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"d12302ec-7f88-4320-9654-d592603826c1","type":"text/javascript","exec":[""]}}],"_postman_id":"b2a88b52-c1a8-4894-a62b-97b44ae87aca","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"28a4ef68-868e-4848-8a0a-3713663622a1","id":"28a4ef68-868e-4848-8a0a-3713663622a1","name":"Search Results","type":"folder"}}},{"name":"PERSONAL_REFERENCE_VERIFICATION","item":[],"id":"671d8b38-2a20-4e10-a08b-9c6c8ee53db7","description":"<p>See <a href=\"#d9ee9681-673a-4ffb-baed-eb2f4ec3b16b\">REFERENCE_VERIFICATION</a></p>\n","_postman_id":"671d8b38-2a20-4e10-a08b-9c6c8ee53db7","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"28a4ef68-868e-4848-8a0a-3713663622a1","id":"28a4ef68-868e-4848-8a0a-3713663622a1","name":"Search Results","type":"folder"}}},{"name":"PROFESSIONAL_LICENSE","item":[],"id":"340e84d0-2d84-4244-a1de-08fa91a07799","description":"<p>In addition to all <a href=\"#512f9d6c-7f4a-4571-adb8-914860ceb231\">License</a> fields, also contains the following:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Data Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>status</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>actions</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><p>Example Results:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"licenseState\": \"Utah\",\n  \"licenseNumber\": \"ABC123\",\n  \"licenseType\": \"NURSE PRACTITIONER\",\n  \"issueDate\": \"02/2020\",\n  \"expirationDate\": \"02/2024\",\n  \"status\": \"ACTIVE\",\n  \"actions\": \"-\"\n}\n</code></pre>","event":[{"listen":"prerequest","script":{"id":"5f06f7bf-a99d-4921-bb6a-76d782ccd25b","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"86c61c53-b867-4826-987d-849765506614","type":"text/javascript","exec":[""]}}],"_postman_id":"340e84d0-2d84-4244-a1de-08fa91a07799","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"28a4ef68-868e-4848-8a0a-3713663622a1","id":"28a4ef68-868e-4848-8a0a-3713663622a1","name":"Search Results","type":"folder"}}},{"name":"PROFESSIONAL_REFERENCE_VERIFICATION","item":[],"id":"1ed8ccb6-60ec-413c-86bd-48c837084da3","description":"<p>See <a href=\"#d9ee9681-673a-4ffb-baed-eb2f4ec3b16b\">REFERENCE_VERIFICATION</a></p>\n","_postman_id":"1ed8ccb6-60ec-413c-86bd-48c837084da3","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"28a4ef68-868e-4848-8a0a-3713663622a1","id":"28a4ef68-868e-4848-8a0a-3713663622a1","name":"Search Results","type":"folder"}}},{"name":"PSP_CRASH_INSPECTION","item":[{"name":"PSPRecord","item":[],"id":"7325ea2d-cd4d-4eb8-a334-7e8385e88a38","description":"<p>In addition to all <a href=\"#512f9d6c-7f4a-4571-adb8-914860ceb231\">License</a> fields, also contains the following:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Data Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>authCodeUrl</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>pspRequestDate</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>mcmisDate</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>driverLicenses</strong></td>\n<td><em>List&lt;<a href=\"#512f9d6c-7f4a-4571-adb8-914860ceb231\">License</a>&gt;</em></td>\n<td>Although just one license is searched, some data providers return a list of all historical/alternative licenses linked to the license that was searched.</td>\n</tr>\n<tr>\n<td><strong>crashSummary</strong></td>\n<td><em><a href=\"#74cf80ee-6482-4624-907c-cc2fc62e82b7\">PSPCrashSummary</a></em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>crashRecords</strong></td>\n<td><em>List&lt;<a href=\"#238ed635-a125-4825-8122-4a0e4e4ac936\">PSPCrashRecord</a>&gt;</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>inspectionSummary</strong></td>\n<td><em><a href=\"#7f2b290f-9d00-4a70-be28-9bf5fc775140\">PSPInspectionSummary</a></em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>inspectionRecords</strong></td>\n<td><em>List&lt;<a href=\"#9653adb9-e5d8-4470-b64a-4746ce39a01f\">PSPInspectionRecord</a>&gt;</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>inspectionViolationSummary</strong></td>\n<td><em>List&lt;<a href=\"#7f34e66a-69de-46e9-afd0-06fc42584b35\">PSPInspectionViolationRecord</a>&gt;</em></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"b08eeab8-0b17-4891-8d87-124e6d595b71","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"2a567460-df18-4a19-a3cf-16d54241fdc3","type":"text/javascript","exec":[""]}}],"_postman_id":"7325ea2d-cd4d-4eb8-a334-7e8385e88a38","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"28a4ef68-868e-4848-8a0a-3713663622a1","id":"28a4ef68-868e-4848-8a0a-3713663622a1","name":"Search Results","type":"folder"}}},{"name":"PSPCrashRecord","item":[],"id":"75b2b208-66b8-4a47-aa72-19cc3ceaf3a5","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Data Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>carrierName</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>injuries</strong></td>\n<td><em>Integer</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>fatalities</strong></td>\n<td><em>Integer</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>location</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>dotNumber</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>driverFirstName</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>driverLastName</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>driverDob</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>driverLicenseNumber</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>driverLicenseState</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>reportState</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>reportNumber</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>reportDate</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>notPreventable</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>notPreventableDescription</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"472187d9-f445-4468-945e-8e9b309891a3","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"e179fc24-9f58-4892-9f08-f644aa6bc50c","type":"text/javascript","exec":[""]}}],"_postman_id":"75b2b208-66b8-4a47-aa72-19cc3ceaf3a5","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"28a4ef68-868e-4848-8a0a-3713663622a1","id":"28a4ef68-868e-4848-8a0a-3713663622a1","name":"Search Results","type":"folder"}}},{"name":"PSPCrashSummary","item":[],"id":"e8f9fafe-47d8-4824-83c6-a603e01b8472","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Data Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>crashes</strong></td>\n<td><em>Integer</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>crashesWithFatalities</strong></td>\n<td><em>Integer</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>crashesWithInjuries</strong></td>\n<td><em>Integer</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>crashesNotPreventable</strong></td>\n<td><em>Integer</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>towaways</strong></td>\n<td><em>Integer</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>fatalities</strong></td>\n<td><em>Integer</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>injuries</strong></td>\n<td><em>Integer</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>hazmatReleases</strong></td>\n<td><em>Integer</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>inspections</strong></td>\n<td><em>Integer</em></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"d257fdb3-9510-48bc-87c3-fec94e5c05a8","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"d2c65cc4-d8e6-49b2-9129-486d31aee73d","type":"text/javascript","exec":[""]}}],"_postman_id":"e8f9fafe-47d8-4824-83c6-a603e01b8472","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"28a4ef68-868e-4848-8a0a-3713663622a1","id":"28a4ef68-868e-4848-8a0a-3713663622a1","name":"Search Results","type":"folder"}}},{"name":"PSPInspectionRecord","item":[],"id":"02b5adb8-f602-4fe2-b379-7a08a0839776","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Data Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>licenseNumber</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>licenseState</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>usdotNumber</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>reportState</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>reportNumber</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>inspectionDate</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>inspectionLevelId</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>hazmatInspectionType</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>postAccidentIndicator</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>totalHazmatSent</strong></td>\n<td><em>Integer</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>totalViolations</strong></td>\n<td><em>Integer</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>inspectionId</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>driverFirstName</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>driverLastName</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>driverDob</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>carrierName</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>driverType</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>inspectionViolations</strong></td>\n<td>List(<a href=\"#c140df82-1462-425b-bd15-2fcbc02cf4a4\">PSPInspectionViolation</a>)</td>\n<td></td>\n</tr>\n<tr>\n<td><strong>inspectionViolationSummary</strong></td>\n<td>List(<a href=\"#7f34e66a-69de-46e9-afd0-06fc42584b35\">PSPInspectionViolationRecord</a></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"af6b1861-e8bd-475a-98c0-b4a06cf8d2c8","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"b02ebc03-d52f-4182-b644-56f3ab9704a3","type":"text/javascript","exec":[""]}}],"_postman_id":"02b5adb8-f602-4fe2-b379-7a08a0839776","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"28a4ef68-868e-4848-8a0a-3713663622a1","id":"28a4ef68-868e-4848-8a0a-3713663622a1","name":"Search Results","type":"folder"}}},{"name":"PSPInspectionSummary","item":[],"id":"8c7f64c2-f551-45b3-9ddb-841a71295640","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Data Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>driverInspections</strong></td>\n<td><em>Integer</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>vehicleInspections</strong></td>\n<td><em>Integer</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>hazmatInspections</strong></td>\n<td><em>Integer</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>driverOutOfServiceInspections</strong></td>\n<td><em>Integer</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>vehicleOutOfServiceInspections</strong></td>\n<td><em>Integer</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>hazmatOutOfServiceInspections</strong></td>\n<td><em>Integer</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>driverOutOfServiceRate</strong></td>\n<td><em>Integer</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>driverVehicleOutOfServiceRate</strong></td>\n<td><em>Integer</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>driverHazmatOutOfServiceRate</strong></td>\n<td><em>Integer</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>dotNumber</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"541d44f4-e269-4fbd-bb6b-c082abc4fb39","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"8eadcced-5357-492b-8593-e4563262d89f","type":"text/javascript","exec":[""]}}],"_postman_id":"8c7f64c2-f551-45b3-9ddb-841a71295640","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"28a4ef68-868e-4848-8a0a-3713663622a1","id":"28a4ef68-868e-4848-8a0a-3713663622a1","name":"Search Results","type":"folder"}}},{"name":"PSPInspectionViolation","item":[],"id":"362e8a44-145c-4140-9974-77f10b39a0ac","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Data Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>inspectionViolationId</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>inspectionId</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>partNumber</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>partNumberSection</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>sectionId</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>inspectionViolationUnit</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>outOfServiceIndicator</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>citationNumber</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>postCrashFlag</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>citationResults</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>citationResultDescription</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"be663750-453a-47ad-99a4-6182a9305b80","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"1c1c3025-dd6f-4363-8000-ec8753ca56e6","type":"text/javascript","exec":[""]}}],"_postman_id":"362e8a44-145c-4140-9974-77f10b39a0ac","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"28a4ef68-868e-4848-8a0a-3713663622a1","id":"28a4ef68-868e-4848-8a0a-3713663622a1","name":"Search Results","type":"folder"}}},{"name":"PSPInspectionViolationRecord","item":[],"id":"104b78f0-f5fc-4e10-822c-2190fea54383","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Data Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>violationNumber</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>violationDescription</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>violationCount</strong></td>\n<td><em>Integer</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>violationOosCount</strong></td>\n<td><em>Integer</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>authCode</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>isAdjudicated</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"543588c4-325d-4c6f-81dd-f5529dceb9dc","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"6ddbeb6b-7c42-4cf4-9e2b-d65f9d1d991c","type":"text/javascript","exec":[""]}}],"_postman_id":"104b78f0-f5fc-4e10-822c-2190fea54383","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"28a4ef68-868e-4848-8a0a-3713663622a1","id":"28a4ef68-868e-4848-8a0a-3713663622a1","name":"Search Results","type":"folder"}}}],"id":"6d239b94-a95f-4731-b01b-aadf29e604b1","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Data Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>records</strong></td>\n<td><em>List&lt;<a href=\"#4def3bee-69ea-4b24-a680-0a39f93e50ff\">PSPRecord</a>&gt;</em></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><p>Example Results:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"records\": [\n        {\n              \"firstName\": \"JOHN\",\n              \"lastName\": \"DOE\",\n              \"dateOfBirth\": \"1980-12-12\",\n              \"licenseState\": \"VA\",\n              \"licenseNumber\": \"123456789\",\n              \"pspRequestDate\": \"2014-04-28\",\n              \"mcmisDate\": \"2013-12-23\",\n              \"driverLicenses\": [\n                    {\n                          \"firstName\": \"JOHN\",\n                          \"lastName\": \"DOE\",\n                          \"licenseState\": \"VA\",\n                          \"licenseNumber\": \"123456789\"\n                    }\n              ],\n              \"crashSummary\": {\n                    \"crashes\": 0,\n                    \"crashesWithFatalities\": 0,\n                    \"crashesWithInjuries\": 0,\n                    \"towaways\": 0,\n                    \"fatalities\": 0,\n                    \"injuries\": 0,\n                    \"hazmatReleases\": 0,\n                    \"inspections\": 3\n              },\n              \"inspectionSummary\": {\n                    \"driverInspections\": 3,\n                    \"vehicleInspections\": 3,\n                    \"hazmatInspections\": 0,\n                    \"driverOutOfServiceInspections\": 0,\n                    \"vehicleOutOfServiceInspections\": 0,\n                    \"hazmatOutOfServiceInspections\": 0,\n                    \"driverOutOfServiceRate\": 0,\n                    \"driverVehicleOutOfServiceRate\": 0,\n                    \"driverHazmatOutOfServiceRate\": 0,\n                    \"dotNumber\": \"0\"\n              },\n              \"inspectionRecords\": [\n                    {\n                          \"licenseNumber\": \"123456789\",\n                          \"licenseState\": \"VA\",\n                          \"usdotNumber\": \"10297959795\",\n                          \"reportState\": \"VA\",\n                          \"reportNumber\": \"2328001234\",\n                          \"inspectionDate\": \"2009-05-02\",\n                          \"inspectionLevelId\": \"4\",\n                          \"postAccidentIndicator\": \"N\",\n                          \"totalHazmatSent\": 0,\n                          \"totalViolations\": 5,\n                          \"inspectionId\": \"24656900\",\n                          \"driverFirstName\": \"DOE\",\n                          \"driverLastName\": \"JOHN\",\n                          \"driverDob\": \"1980-12-12\",\n                          \"carrierName\": \"Insp Carrier Name 48415484\",\n                          \"driverType\": \"P\",\n                          \"inspectionViolations\": [\n                                {\n                                      \"inspectionViolationId\": \"9876132\",\n                                      \"inspectionId\": \"24656900987\",\n                                      \"partNumber\": \"393\",\n                                      \"partNumberSection\": \"47(e)\",\n                                      \"sectionId\": \"CLAMP/ROTO TYPE BRAKE(S) OUT-OF-ADJUSTMENT\",\n                                      \"inspectionViolationUnit\": \"1\",\n                                      \"outOfServiceIndicator\": \"N\",\n                                      \"postCrashFlag\": \"N\"\n                                }\n                          ]\n                    }\n              ],\n              \"inspectionViolationSummary\": [\n                    {\n                          \"violationNumber\": \"393.47(e)\",\n                          \"violationDescription\": \"CLAMP/ROTO TYPE BRAKE(S) OUT-OF-ADJUSTMENT\",\n                          \"violationCount\": 1,\n                          \"violationOosCount\": 0,\n                          \"authCode\": \"b053asdf-6fd1-194c-b47b-3496fefafbfe\"\n                    }\n              ]\n        }\n  ]\n}\n</code></pre>","event":[{"listen":"prerequest","script":{"id":"a2501f3d-a97e-42be-a565-f9dc6a566a71","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"cdbeee65-294b-477b-938b-cc488e4a88df","type":"text/javascript","exec":[""]}}],"_postman_id":"6d239b94-a95f-4731-b01b-aadf29e604b1","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"28a4ef68-868e-4848-8a0a-3713663622a1","id":"28a4ef68-868e-4848-8a0a-3713663622a1","name":"Search Results","type":"folder"}}},{"name":"PUBLIC_RECORDS","item":[{"name":"JudgmentRecord","item":[],"id":"c41f4ddf-1ca1-4762-9582-66d874a79082","description":"<p>In addition to all fields within <a href=\"#6bb2d5f7-36cd-44cd-a08a-097725f0ab4b\">PublicRecord</a>, also contains the following:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Data Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>filingType</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>recordingDate</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>recordNumber</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>deedType</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>documentType</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"c41f4ddf-1ca1-4762-9582-66d874a79082","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"28a4ef68-868e-4848-8a0a-3713663622a1","id":"28a4ef68-868e-4848-8a0a-3713663622a1","name":"Search Results","type":"folder"}}},{"name":"LienRecord","item":[],"id":"0e9a1b28-3d4e-4339-8adc-9c4c56403957","description":"<p>In addition to all fields within <a href=\"#46facf7a-85f7-49a7-8375-41637b904b01\">JudgmentRecord</a>, also contains the following:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Data Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>issuingAgency</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>lienAmount</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>extensionDate</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>taxLienDate</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>taxLienSerialCertificate</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>taxType</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>taxMinimumDate</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>taxMaximumDate</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"0e9a1b28-3d4e-4339-8adc-9c4c56403957","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"28a4ef68-868e-4848-8a0a-3713663622a1","id":"28a4ef68-868e-4848-8a0a-3713663622a1","name":"Search Results","type":"folder"}}}],"id":"a335b5f2-b056-4e9c-afc3-aa9cd42bc7cd","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Data Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>bankruptcyRecords</strong></td>\n<td><em>List&lt;<a href=\"#04cacfd3-efa1-4d8c-bf49-84412ef7cdf2\">BankruptcyRecord</a>&gt;</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>judgmentRecords</strong></td>\n<td><em>List&lt;<a href=\"#46facf7a-85f7-49a7-8375-41637b904b01\">JudgmentRecord</a>&gt;</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>lienRecords</strong></td>\n<td><em>List&lt;<a href=\"#61907b6c-2b88-4ea0-bea6-0e2739a8d2d8\">LienRecord</a>&gt;</em></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><p>Example Results:</p>\n","_postman_id":"a335b5f2-b056-4e9c-afc3-aa9cd42bc7cd","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"28a4ef68-868e-4848-8a0a-3713663622a1","id":"28a4ef68-868e-4848-8a0a-3713663622a1","name":"Search Results","type":"folder"}}},{"name":"REFERENCE_VERIFICATION","item":[],"id":"5aca8893-4188-42ae-a1f7-951159733f49","description":"<p>In addition to all fields in <a href=\"#9cc0e1b0-1fc4-4a09-b6ac-1afc7885e35c\">VerificationResult</a>, also contains the following fields:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Data Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>reference</strong></td>\n<td><em><a href=\"#4261a879-6783-49af-a5d6-2ba95864b857\">Verifier</a></em></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><p>Example Results:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"verificationResponse\": \"Yes\",\n  \"questionsAnswers\": {\n        \"How much wood could a woodchuck chuck if a woodchuck could chuck wood?\": \"As much wood as a woodchuck could chuck if a woodchuck could chuck wood.\"\n  },\n  \"comments\": \"Sounded &lt;em&gt;very&lt;/em&gt; nice.\",\n  \"notes\": \"Reference could not say enough nice things about our applicant.\",\n  \"reference\": {\n        \"name\": \"CHRISTOPHER ROBIN\",\n        \"contactInfo\": {\n              \"phoneNumbers\": [\n                    \"4545458484\"\n              ],\n              \"faxNumber\": \"8015646464\",\n              \"email\": \"christopher@robin.com\"\n        },\n        \"relationship\": \"BEST FRIEND\"\n  }\n}\n</code></pre>","event":[{"listen":"prerequest","script":{"id":"283073f9-4ffe-496b-b23a-ab82de2d7623","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"b7b4c66f-0d5a-4638-8bf2-2afeb2032397","type":"text/javascript","exec":[""]}}],"_postman_id":"5aca8893-4188-42ae-a1f7-951159733f49","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"28a4ef68-868e-4848-8a0a-3713663622a1","id":"28a4ef68-868e-4848-8a0a-3713663622a1","name":"Search Results","type":"folder"}}},{"name":"REPORT_SUMMARIZATION_CUSTOM","item":[],"id":"bc2d5e01-38e1-4edf-ae44-000e9c67af3c","description":"<p>See <a href=\"#e1952f2e-de0c-4556-bdd3-fe3f463f4b3d\">CustomResult</a></p>\n","_postman_id":"bc2d5e01-38e1-4edf-ae44-000e9c67af3c","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"28a4ef68-868e-4848-8a0a-3713663622a1","id":"28a4ef68-868e-4848-8a0a-3713663622a1","name":"Search Results","type":"folder"}}},{"name":"RESIDENCE_VERIFICATION","item":[{"name":"PaymentHistory","item":[],"id":"ccfa4570-2fd9-4960-8747-666a94041f2c","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Data Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>rentAmount</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>paysAsAgreed</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>latePayments</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>nsfChecks</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>balanceOwing</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>legalNotices</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>paymentComments</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"ccfa4570-2fd9-4960-8747-666a94041f2c","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"28a4ef68-868e-4848-8a0a-3713663622a1","id":"28a4ef68-868e-4848-8a0a-3713663622a1","name":"Search Results","type":"folder"}}},{"name":"ResidenceVerification","item":[],"id":"53628074-3d78-4932-9150-fae2ef8c9d3f","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Data Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>verifiedHow</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>verifiedTitle</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>leaseExpirationDate</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>properNotice</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>moveInDate</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>moveOutDate</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>landlordComments</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"53628074-3d78-4932-9150-fae2ef8c9d3f","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"28a4ef68-868e-4848-8a0a-3713663622a1","id":"28a4ef68-868e-4848-8a0a-3713663622a1","name":"Search Results","type":"folder"}}}],"id":"34ad25a4-06d1-4d86-b9c2-10c08707faaf","description":"<p>In addition to all fields in the <a href=\"#9cc0e1b0-1fc4-4a09-b6ac-1afc7885e35c\">VerificationResult</a>, also contains the following:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Data Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>landlord</strong></td>\n<td><a href=\"#4261a879-6783-49af-a5d6-2ba95864b857\"><i>Verifier</i></a></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>verification</strong></td>\n<td><a href=\"#7de9046d-21ca-44f4-9a16-d29305ff2560\"><i>ResidenceVerification</i></a></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>paymentHistory</strong></td>\n<td><a href=\"#3fcd7811-ec95-42bf-ab16-1dc304b003fe\"><i>PaymentHistory</i></a></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><p>Example Results:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"subject\": {\n        \"fullName\": \"DOE, JOHN\"\n  },\n  \"questionsAnswers\": {\n        \"Is the above person(s) a responsible party on the lease?\": \"Yes\",\n        \"One more question\": \"Okay\",\n        \"Are there any problems or complaints on file?\": null,\n        \"Can you do a cartwheel?\": null\n  },\n  \"notes\": \"\",\n  \"landlord\": {\n        \"name\": \"LANDY LORDY\",\n        \"contactInfo\": {\n              \"phoneNumbers\": [\n                    \"8015656464\"\n              ],\n              \"faxNumber\": \"8012545545\",\n              \"email\": \"landlord@gmail.com\"\n        },\n        \"address\": {\n              \"streetOne\": \"123 MAIN\",\n              \"city\": \"SANDY\",\n              \"stateOrProvince\": \"UT\",\n              \"postalCode\": \"84093\"\n        }\n  },\n  \"verification\": {\n        \"verifiedHow\": \"Phone\",\n        \"verifiedTitle\": \"Mr. Landy Lordy\",\n        \"leaseExpirationDate\": \"12/12/1988\",\n        \"properNotice\": \"Yes\",\n        \"moveInDate\": \"12/12/1980\",\n        \"moveOutDate\": \"12/12/1988\",\n        \"landlordComments\": \"Great tenants\"\n  },\n  \"paymentHistory\": {\n        \"rentAmount\": \"1234/mo\",\n        \"paysAsAgreed\": \"Yes\",\n        \"latePayments\": \"0\",\n        \"nsfChecks\": \"0\",\n        \"balanceOwing\": \"0\",\n        \"legalNotices\": \"0\",\n        \"paymentComments\": \"Always payed on time\"\n  }\n}\n\n</code></pre>","event":[{"listen":"prerequest","script":{"id":"af514cc0-2fcc-4d1a-99c0-4f732684fe97","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"0763c4b4-a46d-430a-90b8-57af531574e9","type":"text/javascript","exec":[""]}}],"_postman_id":"34ad25a4-06d1-4d86-b9c2-10c08707faaf","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"28a4ef68-868e-4848-8a0a-3713663622a1","id":"28a4ef68-868e-4848-8a0a-3713663622a1","name":"Search Results","type":"folder"}}},{"name":"SCORECARD_PRO","item":[],"id":"a061f1dc-5a47-4ff5-95b4-c3d155c47449","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Data Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>incomeRatiosRecommendation</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>incomeRatiosGrade</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>incomeToRentRecommendation</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>incomeToRentGrade</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>incomeToRentScore</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>incomeToDebtRecommendation</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>incomeToDebtGrade</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>incomeToDebtScore</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>incomeToDebtRentRecommendation</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>incomeToDebtRentGrade</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>incomeToDebtRentScore</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>creditRecommendation</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>creditGrade</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>delinquentAccountsRecommendation</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>delinquentAccountsGrade</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>delinquentAccountsScore</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>delinquentAccountsCountOrPercent</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>collectionAccountsRecommendation</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>collectionAccountsGrade</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>collectionAccountsScore</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>collectionAccountsCountOrPercent</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>bankruptciesRecommendation</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>bankruptciesGrade</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>bankruptciesScore</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>bankruptciesCount</strong></td>\n<td><em>Integer</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>judgmentsRecommendation</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>judgmentsGrade</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>judgmentsScore</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>judgmentsCount</strong></td>\n<td><em>Integer</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>taxLiensRecommendation</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>taxLiensGrade</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>taxLiensScore</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>taxLiensCount</strong></td>\n<td><em>Integer</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>evictionRecommendation</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>evictionGrade</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>evictionScore</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>criminalRecommendation</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>criminalGrade</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>criminalScore</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><p>Example Results:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"incomeRatiosRecommendation\": \"Deny\",\n  \"incomeRatiosGrade\": \"F\",\n  \"overallDecision\": \"Approve\",\n  \"overallRecommendation\": \"Deny\",\n  \"incomeToRentRecommendation\": \"Insufficient income to rent ratio\",\n  \"incomeToRentGrade\": \"F\",\n  \"incomeToRentScore\": \"0\",\n  \"incomeToRentGradeName\": \"WONKY, RED\",\n  \"incomeToRentResults\": \"0.83:1\",\n  \"incomeToRentScoreLabel\": \"Fail\",\n  \"incomeToDebtRecommendation\": \"Low income to rent ratio\",\n  \"incomeToDebtGrade\": \"C\",\n  \"incomeToDebtScore\": \"2\",\n  \"incomeToDebtName\": \"WONKY, RED\",\n  \"incomeToDebtResults\": \"2.6:1\",\n  \"incomeToDebtScoreLabel\": \"Conditional\",\n  \"incomeToDebtRentRecommendation\": \"Insufficient income to rent ratio\",\n  \"incomeToDebtRentGrade\": \"F\",\n  \"incomeToDebtRentScore\": \"0\",\n  \"incomeToDebtRentName\": \"WONKY, RED\",\n  \"incomeToDebtRentResults\": \"0.63:1\",\n  \"incomeToDebtRentScoreLabel\": \"Fail\",\n  \"creditRecommendation\": \"Review\",\n  \"creditGrade\": \"R\",\n  \"delinquentAccountsGrade\": \"A\",\n  \"delinquentAccountsScore\": \"Pass\",\n  \"delinquentAccountsCountOrPercent\": \"0%\",\n  \"collectionAccountsRecommendation\": \"Collections and/or charge-offs found\",\n  \"collectionAccountsGrade\": \"B\",\n  \"collectionAccountsScore\": \"Conditional\",\n  \"collectionAccountsCountOrPercent\": \"4%\",\n  \"bankruptciesRecommendation\": \"Bankruptcy record found.\",\n  \"bankruptciesGrade\": \"R\",\n  \"bankruptciesScore\": \"Fail\",\n  \"bankruptciesCount\": 1,\n  \"judgmentsRecommendation\": \"Judgment record found.\",\n  \"judgmentsGrade\": \"I\",\n  \"judgmentsScore\": \"Fail\",\n  \"judgmentsCount\": 5,\n  \"taxLiensRecommendation\": \"Lien record found.\",\n  \"taxLiensGrade\": \"R\",\n  \"taxLiensScore\": \"Fail\",\n  \"taxLiensCount\": 5,\n  \"evictionRecommendation\": \"Eviction Records Found\",\n  \"evictionGrade\": \"R\",\n  \"evictionScore\": \"0\",\n  \"criminalRecommendation\": \"Criminal Records Found\",\n  \"criminalGrade\": \"R\",\n  \"criminalScore\": \"0\"\n}\n\n</code></pre>","event":[{"listen":"prerequest","script":{"id":"2afa653a-fa10-460a-99ae-e873ebe16873","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"eb87fddf-a948-4a28-857f-d1e5b5d53214","type":"text/javascript","exec":[""]}}],"_postman_id":"a061f1dc-5a47-4ff5-95b4-c3d155c47449","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"28a4ef68-868e-4848-8a0a-3713663622a1","id":"28a4ef68-868e-4848-8a0a-3713663622a1","name":"Search Results","type":"folder"}}},{"name":"SEX_OFFENDER_RECORD","item":[],"id":"74ab3021-92fb-4945-b45e-bccd5cf673d7","description":"<p>See <a href=\"#d4c1d7b5-59ee-4f11-840c-8b86a9c83422\">CriminalResult</a></p>\n<p>Example Results:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"records\": [\n        {\n              \"subject\": {\n                    \"fullName\": \"DOE JOHN\",\n                    \"dateOfBirth\": \"1980-12-12\"\n              },\n              \"caseNumber\": \"asdfgh3243642\",\n              \"offenses\": [\n                    {\n                          \"type\": \"forced\",\n                          \"offenseDate\": \"01-01-1995\",\n                          \"comments\": \"Labels for Data: Data for the Label\",\n                          \"description\": \"4\",\n                          \"dispositionInfo\": {\n                                \"disposition\": \"False\",\n                                \"date\": \"01-01-1998\"\n                          }\n                    }\n              ]\n        }\n  ]\n}\n</code></pre>","event":[{"listen":"prerequest","script":{"id":"11fe14c9-62df-43c5-9b15-36eece82fbf9","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"14546af1-08f9-481f-aba3-345b94d4aade","type":"text/javascript","exec":[""]}}],"_postman_id":"74ab3021-92fb-4945-b45e-bccd5cf673d7","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"28a4ef68-868e-4848-8a0a-3713663622a1","id":"28a4ef68-868e-4848-8a0a-3713663622a1","name":"Search Results","type":"folder"}}},{"name":"SOCIAL_MEDIA","item":[],"id":"901c19ff-b4b2-492e-aa74-2537265a4d0d","description":"<p>Example Results:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"orderSearchGuid\": \"f9f29eca-ce38-4ed5-a980-47bcf79aa771\",\n    \"status\": \"complete\",\n    \"type\": \"SOCIAL_MEDIA\",\n    \"displayName\": \"Social Media\",\n    \"displayValue\": \"HANKY, MESSIMUS\",\n    \"modifiedDate\": 1645568534000,\n    \"result\": \"no\",\n    \"flagged\": false,\n    \"pendingNotes\": null,\n    \"createdDate\": 1645568461000,\n    \"completedDate\": 1645568534000,\n    \"results\": {\n        \"results\": \"Accounts Found\",\n        \"socialMediaPlatforms\": [\n            {\n                \"platform\": \"FACEBOOK\",\n                \"accounts\": [\n                    {\n                        \"name\": \"SMITH, KATHY\",\n                        \"handle\": \"kathy.smith\",\n                        \"birthday\": \"1980-02-02\",\n                        \"email\": \"TEST@GMAIL.COM\",\n                        \"city\": \"PLEASANT GROVE\",\n                        \"state\": \"UT\",\n                        \"country\": \"US\",\n                        \"totalPosts\": 126,\n                        \"pointsOfInterest\": \"yes\",\n                        \"profilePictureHtml\": \"https://tazworks.com/wp-content/uploads/2020/01/BobSmithProfile.png\",\n                        \"employer\": \"WALMART\",\n                        \"education\": \"UNIVERSITY OF UTAH\",\n                        \"comments\": \"Flagged posts contained extreme political views, suspicious content and likes/shares of suspicious content\"\n                    },\n                    {\n                        \"name\": \"KATHY'S GREAT BUSINESS\",\n                        \"handle\": \"kathy.smith.business\",\n                        \"birthday\": \"\",\n                        \"email\": \"TEST@GMAIL.COM\",\n                        \"city\": \"DRAPER\",\n                        \"state\": \"UT\",\n                        \"country\": \"US\",\n                        \"totalPosts\": 12,\n                        \"pointsOfInterest\": \"no\",\n                        \"profilePictureHtml\": \"https://tazworks.com/wp-content/uploads/2020/01/Powered-by-TC-Large@3x.png\",\n                        \"employer\": \"\",\n                        \"education\": \"\",\n                        \"comments\": \"Business account containing mostly advertisements\"\n                    }\n                ]\n            },\n            {\n                \"platform\": \"INSTAGRAM\",\n                \"accounts\": [\n                    {\n                        \"name\": \"SMITH, KATHERINE\",\n                        \"handle\": \"@kathy.smith\",\n                        \"birthday\": \"02-02-1980\",\n                        \"email\": \"TEST@GMAIL.COM\",\n                        \"city\": \"Calgary\",\n                        \"state\": \"Alberta\",\n                        \"country\": \"Canada\",\n                        \"totalPosts\": 4,\n                        \"pointsOfInterest\": \"no\",\n                        \"profilePictureHtml\": \"\",\n                        \"employer\": \"AMAZON INC.\",\n                        \"education\": \"This isn't even a real school\"\n                    }\n                ]\n            }\n        ]\n    }\n}\n\n</code></pre>","_postman_id":"901c19ff-b4b2-492e-aa74-2537265a4d0d","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"28a4ef68-868e-4848-8a0a-3713663622a1","id":"28a4ef68-868e-4848-8a0a-3713663622a1","name":"Search Results","type":"folder"}}},{"name":"SOCIAL_SECURITY_SEARCH","item":[{"name":"TransunionData","item":[{"name":"Header","item":[],"id":"0c6b5984-3d0d-4a9e-9844-b8fa38db6a50","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Data Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>subjectIdentifier</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>fileNumber</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>fileHitCode</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>fileHitText</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>ssnMatchCode</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>ssnMatchText</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>matchIndicator</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>consumerStatementIndicator</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>bureauMarketFileControl</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>bureauSubmarketFileControl</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>suppressionIndicator</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>infileSinceDate</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"0c6b5984-3d0d-4a9e-9844-b8fa38db6a50","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"28a4ef68-868e-4848-8a0a-3713663622a1","id":"28a4ef68-868e-4848-8a0a-3713663622a1","name":"Search Results","type":"folder"}}},{"name":"Subject","item":[],"id":"ca37b865-a664-46be-be8e-a80d5854ecb1","description":"<p>In addition to all fields in <a href=\"#eb2c7d8a-0031-465b-8844-10f0bde3ed93\">Subject</a>, also contains:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th><strong>Data Type</strong></th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>sourceIndicator</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>nameIndicator</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"ca37b865-a664-46be-be8e-a80d5854ecb1","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"28a4ef68-868e-4848-8a0a-3713663622a1","id":"28a4ef68-868e-4848-8a0a-3713663622a1","name":"Search Results","type":"folder"}}},{"name":"PersonalInformation","item":[],"id":"ec416b9d-9eef-4e9b-9338-4b93aa42c9bd","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th><strong>Data Type</strong></th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>sourceIndicator</td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td>ssn</td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td>dateOfBirth</td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td>age</td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td>gender</td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"ec416b9d-9eef-4e9b-9338-4b93aa42c9bd","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"28a4ef68-868e-4848-8a0a-3713663622a1","id":"28a4ef68-868e-4848-8a0a-3713663622a1","name":"Search Results","type":"folder"}}},{"name":"TransAlert","item":[],"id":"ebf4ec9c-e034-49af-9dee-3ed432da167c","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th><strong>Data Type</strong></th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>addressType</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>addressText</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>messageType</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>messageText</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>alertCondition</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>alertConditionText</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>numberOfInquiriesInLast60days</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"ebf4ec9c-e034-49af-9dee-3ed432da167c","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"28a4ef68-868e-4848-8a0a-3713663622a1","id":"28a4ef68-868e-4848-8a0a-3713663622a1","name":"Search Results","type":"folder"}}},{"name":"Address","item":[],"id":"5309f437-4969-434f-8fd0-dfea7bb83097","description":"<p>In addition to all fields in <a href=\"#38bdf8bf-7c36-4120-bf21-7ea75b4aae4f\">Address</a>, also contains:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th><strong>Data Type</strong></th>\n<th>Column</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>sourceIndicator</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>addressQualifier</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>parsingIndicator</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>dateReported</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"5309f437-4969-434f-8fd0-dfea7bb83097","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"28a4ef68-868e-4848-8a0a-3713663622a1","id":"28a4ef68-868e-4848-8a0a-3713663622a1","name":"Search Results","type":"folder"}}},{"name":"YearOfIssuance","item":[],"id":"c8a46977-f807-4cc6-a59f-1beaa26a448b","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th><strong>Data Type</strong></th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>idQualifier</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>messageCode</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>sourceIndicator</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>numberOfYearsCovered</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>rangeOfYearsIssuedFrom</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>rangeOfYearsIssuedTo</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>state</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>signOfAgeObtainedFrom</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>ageObtainedFrom</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>signOfAgeObtainedTo</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>ageObtainedTo</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>issuanceYearStatus</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>issuanceYearStatusText</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"c8a46977-f807-4cc6-a59f-1beaa26a448b","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"28a4ef68-868e-4848-8a0a-3713663622a1","id":"28a4ef68-868e-4848-8a0a-3713663622a1","name":"Search Results","type":"folder"}}},{"name":"MessageText","item":[],"id":"584bf740-4468-4f27-9928-5002b3a3420b","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th><strong>Data Type</strong></th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>code</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>text</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"584bf740-4468-4f27-9928-5002b3a3420b","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"28a4ef68-868e-4848-8a0a-3713663622a1","id":"28a4ef68-868e-4848-8a0a-3713663622a1","name":"Search Results","type":"folder"}}},{"name":"DeceasedInformation","item":[],"id":"e562c441-77db-45be-b61c-a0fb9d14290f","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th><strong>Data Type</strong></th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>messageCode</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>sourceIndicator</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>lastName</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>firstName</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>cityLastResidency</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>stateLastResidency</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>zipLastResidency</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>dobOfDeceased</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>dod</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"e562c441-77db-45be-b61c-a0fb9d14290f","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"28a4ef68-868e-4848-8a0a-3713663622a1","id":"28a4ef68-868e-4848-8a0a-3713663622a1","name":"Search Results","type":"folder"}}},{"name":"ConsumerStatement","item":[],"id":"3253cd5e-3d2b-449d-9c49-8e2c3001c5bb","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th><strong>Data Type</strong></th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>contentType</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>information</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"3253cd5e-3d2b-449d-9c49-8e2c3001c5bb","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"28a4ef68-868e-4848-8a0a-3713663622a1","id":"28a4ef68-868e-4848-8a0a-3713663622a1","name":"Search Results","type":"folder"}}},{"name":"AddonStatus","item":[],"id":"905c92da-6c26-41fe-a513-fd364941044c","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th><strong>Data Type</strong></th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>productCode</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>productCodeText</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>productStatus</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>productStatusText</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>searchStatus</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>searchStatusText</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"905c92da-6c26-41fe-a513-fd364941044c","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"28a4ef68-868e-4848-8a0a-3713663622a1","id":"28a4ef68-868e-4848-8a0a-3713663622a1","name":"Search Results","type":"folder"}}}],"id":"9bca92de-5abf-4758-b989-8e7daa9a3137","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Data Type</th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>header</strong></td>\n<td><em>Header</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>name</strong></td>\n<td><em>Subject</em></td>\n<td>See <code>Subject</code> under <strong>this</strong> folder.</td>\n</tr>\n<tr>\n<td><strong>personalInformation</strong></td>\n<td><em>PersonalInformation</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>transAlerts</strong></td>\n<td>List&lt;<em>TransAlert&gt;</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>addresses</strong></td>\n<td>List&lt;<em>Address&gt;</em></td>\n<td>See <code>Address</code> under <strong>this</strong> folder.</td>\n</tr>\n<tr>\n<td><strong>yearsOfIssuance</strong></td>\n<td>List&lt;<em>YearOfIssuance&gt;</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>messageTexts</strong></td>\n<td>List&lt;<em>MessageText&gt;</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>deceasedInformation</strong></td>\n<td><em>DeceasedInformation</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>consumerStatements</strong></td>\n<td>List&lt;<em>ConsumerStatement&gt;</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>addonStatus</strong></td>\n<td><em>AddonStatus</em></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>\"transunionDatas\": [\n    {\n      \"header\": {\n        \"subjectIdentifier\": \"1\",\n        \"fileNumber\": \"01\",\n        \"fileHitCode\": \"Y\",\n        \"fileHitText\": \"Regular hit on file, all files are returned\",\n        \"ssnMatchCode\": \"05\",\n        \"ssnMatchText\": \"Exact match between SSN on input and SSN on file\",\n        \"matchIndicator\": \"M\",\n        \"consumerStatementIndicator\": \"N\",\n        \"bureauMarketFileControl\": \"29\",\n        \"bureauSubmarketFileControl\": \"AZ\",\n        \"suppressionIndicator\": \"N\",\n        \"infileSinceDate\": \"20150418\"\n      },\n      \"name\": {\n        \"prefix\": \"MR\",\n        \"firstName\": \"ERIC\",\n        \"middleName\": \"MIDDLE\",\n        \"lastName\": \"FORMAN\",\n        \"suffix\": \"JR\",\n        \"sourceIndicator\": \"F\",\n        \"nameIndicator\": \"1\"\n      },\n      \"personalInformation\": {\n        \"sourceIndicator\": \"F\",\n        \"ssn\": \"101234567\",\n        \"dateOfBirth\": \"11061991\",\n        \"age\": \"31\",\n        \"gender\": \"M\"\n      },\n      \"transAlerts\": [\n        {\n          \"addressType\": \"C\",\n          \"addressText\": \"Current address.\",\n          \"messageType\": \"1\",\n          \"messageText\": \"Address alert.\",\n          \"alertCondition\": \"1\",\n          \"alertConditionText\": \"Mismatch - input does not match file.\",\n          \"numberOfInquiriesInLast60days\": \"00\"\n        },\n        {\n          \"numberOfInquiriesInLast60days\": \"100\"\n        }\n      ],\n      \"addresses\": [\n        {\n          \"streetOne\": \"123 E INDIAN ST RD 123\",\n          \"city\": \"PHOENIX\",\n          \"stateOrProvince\": \"AZ\",\n          \"postalCode\": \"85012-1885\",\n          \"sourceIndicator\": \"F\",\n          \"addressQualifier\": \"1\",\n          \"parsingIndicator\": \"1\",\n          \"dateReported\": \"20220731\"\n        },\n        {\n          \"streetOne\": \"1234 W ENCANTO BV\",\n          \"city\": \"PHOENIX\",\n          \"stateOrProvince\": \"AZ\",\n          \"postalCode\": \"85009-1243\",\n          \"sourceIndicator\": \"F\",\n          \"addressQualifier\": \"1\",\n          \"parsingIndicator\": \"1\",\n          \"dateReported\": \"20220630\"\n        },\n        {\n          \"streetOne\": \"123 W PALOMINO DR 12\",\n          \"city\": \"CHANDLER\",\n          \"stateOrProvince\": \"AZ\",\n          \"postalCode\": \"85225-7711\",\n          \"sourceIndicator\": \"F\",\n          \"addressQualifier\": \"1\",\n          \"parsingIndicator\": \"1\",\n          \"dateReported\": \"20150408\"\n        }\n      ],\n      \"deceasedInformation\": {\n        \"messageCode\": \"6000\",\n        \"sourceIndicator\": \"F\",\n        \"lastName\": \"BLAH\",\n        \"firstName\": \"MABEL\",\n        \"cityLastResidency\": \"MARRERO\",\n        \"stateLastResidency\": \"LA\",\n        \"zipLastResidency\": \"70072\",\n        \"dobOfDeceased\": \"19020117\",\n        \"dod\": \"19880210\"\n      },\n      \"consumerStatements\": [\n        {\n          \"contentType\": \"05\",\n          \"information\": \"CRA INITIAL FRAUD ALERT: ACTION MAY BE REQUIRED UNDER FCRA BEFORE OPENING OR MODIFYING AN ACCO\"\n        },\n        {\n          \"contentType\": \"05\",\n          \"information\": \"UNT. CONTACT CONSUMER AT (903) 503-5076       (903) 930-9801\"\n        }\n      ]\n    }\n  ]\n\n</code></pre>","_postman_id":"9bca92de-5abf-4758-b989-8e7daa9a3137","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"28a4ef68-868e-4848-8a0a-3713663622a1","id":"28a4ef68-868e-4848-8a0a-3713663622a1","name":"Search Results","type":"folder"}}},{"name":"ExperianData","item":[{"name":"Header","item":[],"id":"07440f10-2f4d-44e0-93cc-46d8a27425c8","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th><strong>Data Type</strong></th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>reportDate</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>reportTime</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"07440f10-2f4d-44e0-93cc-46d8a27425c8","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"28a4ef68-868e-4848-8a0a-3713663622a1","id":"28a4ef68-868e-4848-8a0a-3713663622a1","name":"Search Results","type":"folder"}}},{"name":"Subject","item":[],"id":"525500e7-6fa6-40d0-9001-48c4dd9a1619","description":"<p>In addition to all fields in <a href=\"#d82d0606-5d11-46c9-aa42-52d65f47fd22\">Base Subject</a>, also contains:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th><strong>Data Type</strong></th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>birthYear</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"525500e7-6fa6-40d0-9001-48c4dd9a1619","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"28a4ef68-868e-4848-8a0a-3713663622a1","id":"28a4ef68-868e-4848-8a0a-3713663622a1","name":"Search Results","type":"folder"}}},{"name":"Address","item":[],"id":"babd2b41-7ad9-4cd8-8c6e-1e11cb9ab889","description":"<p>In addition to all fields in <a href=\"#38bdf8bf-7c36-4120-bf21-7ea75b4aae4f\">Address</a>, also contains:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th><strong>Data Type</strong></th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>firstReportedDate</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>lastUpdatedDate</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>originationCode</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>reportCount</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>lastSubcode</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>dwellingType</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>dwellingText</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>homeOwnership</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>censusGeoCode</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>exclusionWord</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>exclusionNumber</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"babd2b41-7ad9-4cd8-8c6e-1e11cb9ab889","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"28a4ef68-868e-4848-8a0a-3713663622a1","id":"28a4ef68-868e-4848-8a0a-3713663622a1","name":"Search Results","type":"folder"}}},{"name":"Employment","item":[],"id":"14f5cde8-37a0-4b27-a373-63f255e381ab","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th><strong>Data Type</strong></th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>firstReportedDate</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>lastUpdatedDate</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>originationCode</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>name</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>addressStreet</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>postalCode</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"14f5cde8-37a0-4b27-a373-63f255e381ab","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"28a4ef68-868e-4848-8a0a-3713663622a1","id":"28a4ef68-868e-4848-8a0a-3713663622a1","name":"Search Results","type":"folder"}}},{"name":"Facs","item":[],"id":"22f5d6f2-3ab7-4d9d-a175-fd2d2d680e8c","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th><strong>Data Type</strong></th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>recordType</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>sicCodes</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>facsText</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>socialDate</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>socialCount</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>socialErrorCode</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>socialErrorText</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>addressDate</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>addressCount</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>addressErrorCode</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>addressErrorText</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>ssnFirstPossibleYear</strong></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>ssnLastPossibleYear</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"22f5d6f2-3ab7-4d9d-a175-fd2d2d680e8c","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"28a4ef68-868e-4848-8a0a-3713663622a1","id":"28a4ef68-868e-4848-8a0a-3713663622a1","name":"Search Results","type":"folder"}}}],"id":"8698ea7f-455e-4cb0-8667-4fd9cb64c253","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th><strong>Data Type</strong></th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>header</strong></td>\n<td><em>Header</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>fullNames</strong></td>\n<td>List&lt;<em>Subject&gt;</em></td>\n<td>See <code>Subject</code> under <strong>this</strong> folder.</td>\n</tr>\n<tr>\n<td><strong>addresses</strong></td>\n<td>List&lt;<em>Address&gt;</em></td>\n<td>See <code>Address</code> under <strong>this</strong> folder.</td>\n</tr>\n<tr>\n<td><strong>employments</strong></td>\n<td>List&lt;<em>Employment&gt;</em></td>\n<td>See <code>Employment</code> under <strong>this</strong> folder.</td>\n</tr>\n<tr>\n<td><strong>facs</strong></td>\n<td><em>Facs</em></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><p>Example Results:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>\"experianData\": {\n    \"header\": {\n      \"reportDate\": \"07312023\",\n      \"reportTime\": \"161602\"\n    },\n    \"fullNames\": [\n      {\n        \"firstName\": \"DONOVAN\",\n        \"lastName\": \"MITCHELL\",\n        \"suffix\": \"X\",\n        \"dateOfBirth\": \"01241999\",\n        \"birthYear\": \"1999\"\n      },\n      {\n        \"firstName\": \"DONOVAN\",\n        \"middleName\": \"N\",\n        \"lastName\": \"MITCHELL\",\n        \"suffix\": \"Y\"\n      },\n      {\n        \"firstName\": \"DONOVAN\",\n        \"lastName\": \"MITCHELL\",\n        \"suffix\": \"JR\",\n        \"birthYear\": \"2000\"\n      }\n    ],\n    \"addresses\": [\n      {\n        \"streetOne\": \"3533 GARDENBROOK DR\",\n        \"city\": \"AUGUSTA\",\n        \"stateOrProvince\": \"GA\",\n        \"postalCode\": \"309064509\",\n        \"firstReportedDate\": \"07192001\",\n        \"lastUpdatedDate\": \"07222023\",\n        \"originationCode\": \"1\",\n        \"reportCount\": \"04\",\n        \"lastSubcode\": \"0507170\",\n        \"dwellingText\": \"Single-family dwelling\",\n        \"homeOwnership\": \"yep\",\n        \"censusGeoCode\": \"geo\",\n        \"exclusionWord\": \"exc\",\n        \"exclusionNumber\": \"ecvnum\",\n        \"dwellingCode\": \"S\"\n      },\n      {\n        \"streetOne\": \"512 MOODY CT\",\n        \"city\": \"MARTINEZ\",\n        \"stateOrProvince\": \"GA\",\n        \"postalCode\": \"309077337\",\n        \"firstReportedDate\": \"05102021\",\n        \"lastUpdatedDate\": \"03152022\",\n        \"originationCode\": \"1\",\n        \"reportCount\": \"01\",\n        \"lastSubcode\": \"1978102\",\n        \"dwellingText\": \"Apartment complex\",\n        \"exclusionWord\": \"APT\",\n        \"exclusionNumber\": \"103\",\n        \"dwellingCode\": \"A\"\n      }\n    ],\n    \"employments\": [\n      {\n        \"firstReportedDate\": \"11272021\",\n        \"lastUpdatedDate\": \"12102021\",\n        \"originationCode\": \"8\",\n        \"name\": \"THE NBA\",\n        \"addressStreet\": \"MAIN MAIN 2 Unit 123\",\n        \"postalCode\": \"84093\"\n      },\n      {\n        \"firstReportedDate\": \"07142006\",\n        \"lastUpdatedDate\": \"07142006\",\n        \"originationCode\": \"8\",\n        \"name\": \"NCAA\"\n      }\n    ]\n  }\n\n</code></pre>","_postman_id":"8698ea7f-455e-4cb0-8667-4fd9cb64c253","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"28a4ef68-868e-4848-8a0a-3713663622a1","id":"28a4ef68-868e-4848-8a0a-3713663622a1","name":"Search Results","type":"folder"}}},{"name":"EquifaxData","item":[{"name":"Header","item":[],"id":"848d2535-897d-4d49-becf-e6e9f1bc9bb9","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th><strong>Data Type</strong></th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>firstName</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>middleName</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>lastName</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>suffix</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>ssn</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>dobAge</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>hitNoHit</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>reportDate</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>fraudVictimIndicator</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>safeScanCode</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>safeScanText</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"848d2535-897d-4d49-becf-e6e9f1bc9bb9","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"28a4ef68-868e-4848-8a0a-3713663622a1","id":"28a4ef68-868e-4848-8a0a-3713663622a1","name":"Search Results","type":"folder"}}},{"name":"Address","item":[],"id":"dff9ca83-1d0d-4fe5-b45a-02fc2f33883e","description":"<p>In addition to all fields in <a href=\"#38bdf8bf-7c36-4120-bf21-7ea75b4aae4f\">Address</a>, also contains:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th><strong>Data Type</strong></th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>rentOwnBuy</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>addressSource</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>dateReported</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>telephoneNumber</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>telephoneSource</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>telephoneDate</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"dff9ca83-1d0d-4fe5-b45a-02fc2f33883e","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"28a4ef68-868e-4848-8a0a-3713663622a1","id":"28a4ef68-868e-4848-8a0a-3713663622a1","name":"Search Results","type":"folder"}}},{"name":"Ssn","item":[],"id":"18bf1769-3112-42ac-be6d-d15ff3d70a10","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th><strong>Data Type</strong></th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>creditSubjectAge</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>creditSubjectSsn</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>creditSubjectVerifiedSsn</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>socialMatchFlags</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>inquirySubjectSsn</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>inquirySsnDateIssued</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>inquirySsnStateIssued</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>inquirySsnDeathDate</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>inquirySsnStateDeath</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>ssnMatch</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"18bf1769-3112-42ac-be6d-d15ff3d70a10","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"28a4ef68-868e-4848-8a0a-3713663622a1","id":"28a4ef68-868e-4848-8a0a-3713663622a1","name":"Search Results","type":"folder"}}}],"id":"11c31736-1f38-4c56-b72f-f316cfa86411","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>header</td>\n<td><em>Header</em></td>\n<td></td>\n</tr>\n<tr>\n<td>currentAddress</td>\n<td><em>Address</em></td>\n<td>See <code>Address</code> under <strong>this</strong> folder.</td>\n</tr>\n<tr>\n<td>formerAddress</td>\n<td><em>Address</em></td>\n<td>See <code>Address</code> under <strong>this</strong> folder.</td>\n</tr>\n<tr>\n<td>formerNames</td>\n<td>List&lt;<em>BaseSubject&gt;</em></td>\n<td></td>\n</tr>\n<tr>\n<td>ssn</td>\n<td><em>Ssn</em></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><p>Example Results:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>\"equifaxData\": {\n    \"header\": {\n      \"firstName\": \"VICTORY\",\n      \"middleName\": \"WINSTON\",\n      \"lastName\": \"LANE\",\n      \"suffix\": \"JR\",\n      \"ssn\": \"248484848\",\n      \"dobAge\": \"39\",\n      \"hitNoHit\": \"1\",\n      \"reportDate\": \"07312023\",\n      \"fraudVictimIndicator\": \"A\",\n      \"safeScanCode\": \"S\",\n      \"safeScanText\": \"SAFESCANNED:  YOUR INQUIRY HASGONE THROUGH OUR SAFESCAN DATABASE.\"\n    },\n    \"currentAddress\": {\n      \"streetOne\": \"123 DEER SPRINGS RD\",\n      \"city\": \"CLARKS HILL\",\n      \"stateOrProvince\": \"SC\",\n      \"postalCode\": \"29821\",\n      \"startDate\": \"1999\",\n      \"rentOwnBuy\": \"own\",\n      \"addressSource\": \"C\",\n      \"dateReported\": \"042004\",\n      \"telephoneNumber\": \"8018388282\",\n      \"telephoneSource\": \"ya\",\n      \"telephoneDate\": \"ya\"\n    },\n    \"formerAddress\": {\n      \"streetOne\": \"123 HILLTOP FARM RD\",\n      \"city\": \"CANTON\",\n      \"stateOrProvince\": \"NC\",\n      \"postalCode\": \"28716\",\n      \"addressSource\": \"T\",\n      \"dateReported\": \"062022\"\n    },\n    \"formerNames\": [\n      {\n        \"firstName\": \"DONOVAN\",\n        \"middleName\": \"MID\",\n        \"lastName\": \"MITCH\",\n        \"suffix\": \"Jr\"\n      },\n      {\n        \"firstName\": \"DONOVAN\",\n        \"middleName\": \"S\",\n        \"lastName\": \"JONES\"\n      }\n    ],\n    \"ssn\": {\n      \"creditSubjectSsn\": \"248484848\",\n      \"inquirySubjectSsn\": \"248484848\",\n      \"inquirySsnDateIssued\": \"1974\",\n      \"inquirySsnStateIssued\": \"SC\"\n    }\n  }\n\n</code></pre>","_postman_id":"11c31736-1f38-4c56-b72f-f316cfa86411","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"28a4ef68-868e-4848-8a0a-3713663622a1","id":"28a4ef68-868e-4848-8a0a-3713663622a1","name":"Search Results","type":"folder"}}}],"id":"55a94f7e-8581-442a-b1e2-01e4cf78a6d0","description":"<p>For the social security search, the data returns depends on which bureau the CRA uses to fulfill the search. Please ask your CRA which vendor they use so you can map accordingly.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Data Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>transunionDatas</strong></td>\n<td><em>List</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>experianData</strong></td>\n<td><em>ExperianData</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>equifaxData</strong></td>\n<td><em>EquifaxData</em></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><p>For examples, please see each of the respective bureaus under this folder.</p>\n","event":[{"listen":"prerequest","script":{"id":"be4cfd61-9a7a-4765-b23a-34431c891979","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"9cd9da88-e661-408c-84dc-bdac0baaf781","type":"text/javascript","exec":[""]}}],"_postman_id":"55a94f7e-8581-442a-b1e2-01e4cf78a6d0","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"28a4ef68-868e-4848-8a0a-3713663622a1","id":"28a4ef68-868e-4848-8a0a-3713663622a1","name":"Search Results","type":"folder"}}},{"name":"STATE_CRIMINAL_COURT","item":[],"id":"f6f9b4ba-e660-4e67-aa83-e2ca2a178d29","description":"<p>See <a href=\"#d4c1d7b5-59ee-4f11-840c-8b86a9c83422\">CriminalResult</a></p>\n<p>Example Results:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"jurisdictionsSearched\": \"UTAH\",\n  \"records\": [\n        {\n              \"subject\": {\n                    \"fullName\": \"DOE B JOHN\",\n                    \"dateOfBirth\": \"XXXX-12-12\",\n                    \"other\": {\n                          \"Address\": \"123 MAIN\",\n                          \"Alias\": \"FRED B ALIAS\"\n                    }\n              },\n              \"caseNumber\": \"1234\",\n              \"jurisdiction\": \"UTAH\",\n              \"fileDate\": \"2000-01-02\",\n              \"offenses\": [\n                    {\n                          \"type\": \"Misdemeanor\",\n                          \"countOffense\": \"TEST CHARGE\",\n                          \"offenseDate\": \"2000-01-01\",\n                          \"comments\": \"TEST ADDITIONAL COMMENTS\",\n                          \"sentenceInfo\": {\n                                \"other\": {\n                                      \"Prison\": \"TEST PRISON\",\n                                      \"Probation\": \"TEST PROBATION\",\n                                      \"Jail\": \"TEST JAIL\",\n                                      \"Fine\": \"100.0000\",\n                                      \"Other Sentence Details\": \"TEST OTHER SENTENCE DETAIL\",\n                                      \"Court Fee\": \"100.0000\"\n                                }\n                          },\n                          \"dispositionInfo\": {\n                                \"disposition\": \"Guilty\",\n                                \"date\": \"2000-01-03\",\n                                \"other\": {\n                                      \"Plea\": \"TEST PLEA\"\n                                }\n                          }\n                    }\n              ]\n        }\n  ]\n}\n</code></pre>","event":[{"listen":"prerequest","script":{"id":"f01641f1-9df9-42e9-860e-e0abd40534aa","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"4a2d5793-5c1b-47c2-9427-42cb5ae00c84","type":"text/javascript","exec":[""]}}],"_postman_id":"f6f9b4ba-e660-4e67-aa83-e2ca2a178d29","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"28a4ef68-868e-4848-8a0a-3713663622a1","id":"28a4ef68-868e-4848-8a0a-3713663622a1","name":"Search Results","type":"folder"}}},{"name":"STATE_CRIMINAL_DATABASE","item":[],"id":"de042c47-5025-4172-87a1-7e88e6c2d867","description":"<p>See <a href=\"#d4c1d7b5-59ee-4f11-840c-8b86a9c83422\">CriminalResult</a></p>\n<p>Example Results:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"jurisdictionsSearched\": \"AZMaricopa Superior Archive, AZMaricopa Felony, AZMaricopa Misdemeanor, AZAOC, AZPima, AZMaricopa Superior, AZMohave, AZDOC, AZProprietary Offender Data, AZManually Collected Data, AZMaricopa Superior, AKSex Offender, ALSex Offender, ARSex Offender, AZSex Offender\",\n  \"records\": [\n        {\n              \"subject\": {\n                    \"fullName\": \"MESS, HANK\",\n                    \"dateOfBirth\": \"19710427\",\n                    \"gender\": \"MALE\",\n                    \"height\": \"000\",\n                    \"weight\": \"000\",\n                    \"eyeColor\": \"UNKNOWN\",\n                    \"addresses\": [\n                          {\n                                \"streetOne\": \",Tonopah AZ 85354\"\n                          }\n                    ]\n              },\n              \"caseNumber\": \"M00003583999\",\n              \"jurisdiction\": \"AZ AOC\",\n              \"comments\": \"Case#: M00003583999 Court: Phoenix Municipal\",\n              \"judgementInfo\": {},\n              \"offenses\": [\n                    {\n                          \"type\": \"MISDEMEANOR\",\n                          \"caseNumber\": \"M00003583999\",\n                          \"comments\": \"MISDEMEANOR. Disposition and File Date older than 3 years, in 2007.\",\n                          \"jurisdiction\": \"AZPhoenix Munici\",\n                          \"description\": \"SELLING ALCOHOL TO MINOR; MINOR IN POSSE\",\n                          \"fileDate\": \"2007-01-10\",\n                          \"dispositionInfo\": {\n                                \"disposition\": \"PLEA GUILTY/RESP SENT IMPOSED\",\n                                \"date\": \"2007-01-16\"\n                          }\n                    },\n                    {\n                          \"type\": \"MISDEMEANOR\",\n                          \"caseNumber\": \"M00003583999\",\n                          \"comments\": \"MISDEMEANOR. File Date older than 3 years.\",\n                          \"jurisdiction\": \"AZPhoenix Munici\",\n                          \"description\": \"OPEN CONTAINER OF LIQUOR W/IN VEH\",\n                          \"fileDate\": \"2007-01-10\",\n                          \"dispositionInfo\": {\n                                \"disposition\": \"PLEA GUILTY/RESP SENT IMPOSED\",\n                                \"date\": \"2007-05-09\"\n                          }\n                    }\n              ],\n              \"probation\": {}\n        },\n        {\n              \"subject\": {\n                    \"fullName\": \"MESS,HANK\",\n                    \"dateOfBirth\": \"1971-04-27\",\n                    \"gender\": \"MALE\",\n                    \"race\": \"WHITE\",\n                    \"height\": \"000\",\n                    \"weight\": \"000\",\n                    \"eyeColor\": \"UNKNOWN\",\n                    \"addresses\": [\n                          {\n                                \"streetOne\": \",Tonopah AZ 85354\"\n                          }\n                    ]\n              },\n              \"caseNumber\": \"M2111TR2005020000\",\n              \"jurisdiction\": \"AZ AOC\",\n              \"comments\": \"Case#: M2111TR2005020000 Court: Glendale Municipal\",\n              \"judgementInfo\": {},\n              \"offenses\": [\n                    {\n                          \"type\": \"MISDEMEANOR\",\n                          \"caseNumber\": \"M2111TR2005020000\",\n                          \"comments\": \"MISDEMEANOR. Disposition and File date in 2017.\",\n                          \"jurisdiction\": \"AZGlendale Munic\",\n                          \"description\": \"SOLICITATIONRACING ON HIGHWAY; EXHIBITION OF SPEE\",\n                          \"fileDate\": \"2017-11-08\",\n                          \"dispositionInfo\": {\n                                \"disposition\": \"PLEA GUILTY/RESP SENT IMPOSED\",\n                                \"date\": \"2017-11-15\"\n                          }\n                    }\n              ],\n              \"probation\": {}\n        },\n        {\n              \"subject\": {\n                    \"fullName\": \"MESS,HANK\",\n                    \"gender\": \"UNKNOWN\",\n                    \"height\": \"000\",\n                    \"weight\": \"000\",\n                    \"eyeColor\": \"UNKNOWN\",\n                    \"stateUrl\": \"http://masorb.gis.net/search.htm\",\n                    \"addresses\": [\n                          {\n                                \"streetOne\": \"20 ENDROAD ST 304,PHOENIX AZ 85060\"\n                          }\n                    ]\n              },\n              \"jurisdiction\": \"AZ Sex Offender\",\n              \"comments\": \"Race: W Height: 510 Weight: 180 Eye: BRO Hair: BLK Sex: M\",\n              \"judgementInfo\": {},\n              \"offenses\": [\n                    {\n                          \"type\": \"FELONY\",\n                          \"comments\": \"OPEN AND GROSS LEWDNESS AND LASCIVIOUS BEHAVIOR. Disposition and File date in 2016.\",\n                          \"jurisdiction\": \"AZ\",\n                          \"description\": \"Registered Sex Offender\",\n                          \"fileDate\": \"2016-11-21\",\n                          \"dispositionInfo\": {\n                                \"disposition\": \"Registered\",\n                                \"date\": \"2016-11-22\"\n                          }\n                    }\n              ],\n              \"probation\": {}\n        }\n  ]\n}\n</code></pre>","event":[{"listen":"prerequest","script":{"id":"633470bd-91ac-48e5-9ba8-3abbd4147742","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"7c9deab5-37f1-45e3-ae86-1f267351d533","type":"text/javascript","exec":[""]}}],"_postman_id":"de042c47-5025-4172-87a1-7e88e6c2d867","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"28a4ef68-868e-4848-8a0a-3713663622a1","id":"28a4ef68-868e-4848-8a0a-3713663622a1","name":"Search Results","type":"folder"}}},{"name":"STATE_RENTAL_RECORD_DATABASE","item":[],"id":"bf6ac178-bc12-42a0-902c-aa4e2bd4240c","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Data Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>records</strong></td>\n<td><em>List&lt;<a href=\"##8067b045-3c05-47bc-b60a-3f1ce17d100f\">RentalRecord</a>&gt;</em></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><p>Example Results:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"records\": [\n        {\n              \"subject\": {},\n              \"caseNumber\": \"ABC060206\",\n              \"stateAbbreviation\": \"AZ\",\n              \"fileDate\": \"2006-04-14\",\n              \"dispositionInfo\": {},\n              \"judgementInfo\": {\n                    \"amount\": \"6543\"\n              },\n              \"defendants\": [\n                    {\n                          \"fullName\": \"DOE, JOHN\",\n                          \"addresses\": [\n                                {\n                                      \"streetOne\": \"911 DEADEND BV 1033\",\n                                      \"city\": \"CHANDLER\",\n                                      \"stateOrProvince\": \"AZ\",\n                                      \"postalCode\": \"85226\"\n                                }\n                          ],\n                          \"aliases\": [\n                                {\n                                      \"fullName\": \"DOE R JOHN\"\n                                }\n                          ]\n                    }\n              ],\n              \"plaintiffs\": [\n                    {\n                          \"fullName\": \"PREFERRED PROPERTY MGT INC\",\n                          \"addresses\": [\n                                {}\n                          ]\n                    }\n              ],\n              \"countyFips\": \"040\",\n              \"stateFips\": \"13\"\n        },\n        {\n              \"subject\": {},\n              \"caseNumber\": \"XYX060206\",\n              \"stateAbbreviation\": \"AZ\",\n              \"fileDate\": \"2006-04-24\",\n              \"dispositionInfo\": {},\n              \"judgementInfo\": {\n                    \"amount\": \"1234\"\n              },\n              \"defendants\": [\n                    {\n                          \"fullName\": \"DOE, JOHN\",\n                          \"addresses\": [\n                                {\n                                      \"streetOne\": \"321 WRONGWAY ST 1055\",\n                                      \"city\": \"PHOENIX\",\n                                      \"stateOrProvince\": \"AZ\",\n                                      \"postalCode\": \"85022\"\n                                }\n                          ],\n                          \"aliases\": [\n                                {\n                                      \"fullName\": \"DOE JOHN\"\n                                }\n                          ]\n                    }\n              ],\n              \"plaintiffs\": [\n                    {\n                          \"fullName\": \"CRIMINAL RENT MGT INC\",\n                          \"addresses\": [\n                                {}\n                          ]\n                    }\n              ],\n              \"countyFips\": \"040\",\n              \"stateFips\": \"13\"\n        }\n  ]\n}\n</code></pre>","event":[{"listen":"prerequest","script":{"id":"5a967dfc-9ea0-44ee-ac05-d4cfcbf8dd95","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"50641ac2-c194-4a43-84d2-2f04879c083a","type":"text/javascript","exec":[""]}}],"_postman_id":"bf6ac178-bc12-42a0-902c-aa4e2bd4240c","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"28a4ef68-868e-4848-8a0a-3713663622a1","id":"28a4ef68-868e-4848-8a0a-3713663622a1","name":"Search Results","type":"folder"}}},{"name":"SUBSTANCE_ABUSE_SCREENING_CUSTOM","item":[],"id":"895b065b-e248-46a6-ba77-ccba526fac37","description":"<p>See <a href=\"#e1952f2e-de0c-4556-bdd3-fe3f463f4b3d\">CustomResult</a></p>\n","_postman_id":"895b065b-e248-46a6-ba77-ccba526fac37","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"28a4ef68-868e-4848-8a0a-3713663622a1","id":"28a4ef68-868e-4848-8a0a-3713663622a1","name":"Search Results","type":"folder"}}},{"name":"SUBSTANCE_ABUSE","item":[],"id":"c97c4894-2ac1-446d-b0c4-2125225b4a10","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Data Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>overallResult</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>panelName</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>specimenId</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>collectionDate</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>other</strong></td>\n<td><em>Map&lt;String, String&gt;</em></td>\n<td>Map/dict of all other fields</td>\n</tr>\n</tbody>\n</table>\n</div><p>Example Results:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"overallResult\": \"Negative\",\n  \"panelName\": \"10 Panel Std\",\n  \"specimenId\": \"ASDF123123\",\n  \"collectionDate\": \"2020-01-01\",\n  \"other\": {\n        \"Information\": \"goes here\"\n  }\n}\n</code></pre>","event":[{"listen":"prerequest","script":{"id":"1e2f6f06-fcb8-4145-8539-7f213850f900","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"60cf9b44-5161-4b36-a4a1-9c2a8cb3c713","type":"text/javascript","exec":[""]}}],"_postman_id":"c97c4894-2ac1-446d-b0c4-2125225b4a10","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"28a4ef68-868e-4848-8a0a-3713663622a1","id":"28a4ef68-868e-4848-8a0a-3713663622a1","name":"Search Results","type":"folder"}}},{"name":"TENANT_SCORECARD","item":[{"name":"TenantScorecardRecord","item":[],"id":"fe889a44-c69c-4519-82af-ffdeb23ebad2","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Data Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>type</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>bankruptcyResult</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>bankruptcyRecommendation</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>collectionAccountsResult</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>collectionAccountsRecommendation</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>criminalResult</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>criminalRecommendation</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>delinquentAccountsResult</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>delinquentAccountsRecommendation</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>employmentRecommendation</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>employmentResult</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>evictionResult</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>evictionRecommendation</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>incomeDebtRentRecommendation</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>incomeDebtRentResult</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>incomeDebtRecommendation</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>incomeDebtResult</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>incomeRentRecommendation</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>incomeRentResult</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>residentialRecommendation</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>residentialResult</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>scoreResult</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>scoreRecommendation</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>totalRecommendation</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>consolidatedCreditRecommendation</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"fe889a44-c69c-4519-82af-ffdeb23ebad2","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"28a4ef68-868e-4848-8a0a-3713663622a1","id":"28a4ef68-868e-4848-8a0a-3713663622a1","name":"Search Results","type":"folder"}}}],"id":"65a64af0-c2a8-426e-9bbc-7e953116ca71","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Data Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>records</strong></td>\n<td><em>List&lt;<a href=\"#887bd843-f6eb-4367-8135-5df44c53be69\">TenantScorecardRecord</a>&gt;</em></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><p>Example Results:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"records\": [\n        {\n              \"type\": \"applicant\",\n              \"collectionAccountsResult\": \"3\",\n              \"collectionAccountsRecommendation\": \"CONDITIONAL\",\n              \"delinquentAccountsResult\": \"0\",\n              \"delinquentAccountsRecommendation\": \"PASS\",\n              \"incomeDebtRentRecommendation\": \"FAIL\",\n              \"incomeDebtRentResult\": \"0.13:1\",\n              \"incomeDebtRecommendation\": \"FAIL\",\n              \"incomeDebtResult\": \"0.13:1\",\n              \"incomeRentRecommendation\": \"PASS\",\n              \"incomeRentResult\": \"123:1\",\n              \"scoreResult\": \"614\",\n              \"scoreRecommendation\": \"CONDITIONAL\",\n              \"totalRecommendation\": \"FAIL\"\n        }\n  ]\n}\n</code></pre>","event":[{"listen":"prerequest","script":{"id":"62d0af89-d2a0-4bb7-8e04-e244a3e0c61d","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"61eed9b5-8ecb-430c-8848-d6981a7ac280","type":"text/javascript","exec":[""]}}],"_postman_id":"65a64af0-c2a8-426e-9bbc-7e953116ca71","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"28a4ef68-868e-4848-8a0a-3713663622a1","id":"28a4ef68-868e-4848-8a0a-3713663622a1","name":"Search Results","type":"folder"}}},{"name":"VERIFICATION_CUSTOM","item":[],"id":"520b6474-1949-43a8-ae13-c23a13053160","description":"<p>See <a href=\"#e1952f2e-de0c-4556-bdd3-fe3f463f4b3d\">CustomResult</a></p>\n","_postman_id":"520b6474-1949-43a8-ae13-c23a13053160","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"28a4ef68-868e-4848-8a0a-3713663622a1","id":"28a4ef68-868e-4848-8a0a-3713663622a1","name":"Search Results","type":"folder"}}}],"id":"8d9848e0-542f-4c28-a9d3-b3eb6563ff51","event":[{"listen":"prerequest","script":{"id":"0745ec5c-0a24-483b-9309-7ae472b29d3e","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"9693cc86-212e-4636-ae0a-82100a74397c","type":"text/javascript","exec":[""]}}],"_postman_id":"8d9848e0-542f-4c28-a9d3-b3eb6563ff51","description":"","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"28a4ef68-868e-4848-8a0a-3713663622a1","id":"28a4ef68-868e-4848-8a0a-3713663622a1","name":"Search Results","type":"folder"}}},{"name":"Shared Result Models","item":[{"name":"Address","item":[],"id":"12ca18c7-4b37-4cf6-955e-a2464738b6e0","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Data Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>streetOne</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>streetTwo</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>city</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>stateOrProvince</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>postalCode</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>county</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>country</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>startDate</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>endDate</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"70797aef-a00c-49b4-a547-77a9d3acee90","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"7d938a14-e06b-4b8b-8b4e-bdb00fab5595","type":"text/javascript","exec":[""]}}],"_postman_id":"12ca18c7-4b37-4cf6-955e-a2464738b6e0","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"28a4ef68-868e-4848-8a0a-3713663622a1","id":"28a4ef68-868e-4848-8a0a-3713663622a1","name":"Search Results","type":"folder"}}},{"name":"Alias","item":[],"id":"8130a15b-566c-4987-9802-b53069bd7037","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Data Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>fullName</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>dateOfBirth</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"f96fdc29-eb4d-4116-9cae-442c43ff0437","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"319e42a9-eb0a-4841-9a3a-6e152217c653","type":"text/javascript","exec":[""]}}],"_postman_id":"8130a15b-566c-4987-9802-b53069bd7037","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"28a4ef68-868e-4848-8a0a-3713663622a1","id":"28a4ef68-868e-4848-8a0a-3713663622a1","name":"Search Results","type":"folder"}}},{"name":"BankruptcyRecord","item":[],"id":"76af0a7d-a15a-4973-a2e3-a4955cb6cdba","description":"<p>In addition to all fields within <a href=\"#6bb2d5f7-36cd-44cd-a08a-097725f0ab4b\">PublicRecord</a>, also contains the following:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Data Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>chapter</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>notes</strong></td>\n<td><em>String</em></td>\n<td>Any notes pertaining to this bankruptcy record.</td>\n</tr>\n<tr>\n<td><strong>assetsAvailable</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>noticeType</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>judge</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>trustee</strong></td>\n<td><em><a href=\"#eb2c7d8a-0031-465b-8844-10f0bde3ed93\">Subject</a></em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>attorney</strong></td>\n<td><em><a href=\"#eb2c7d8a-0031-465b-8844-10f0bde3ed93\">Subject</a></em></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"64774c38-5f95-4b53-b3c9-1d22c3b7ef82","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"3cc6c5ac-ef99-4fcb-91ca-4b492f514feb","type":"text/javascript","exec":[""]}}],"_postman_id":"76af0a7d-a15a-4973-a2e3-a4955cb6cdba","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"28a4ef68-868e-4848-8a0a-3713663622a1","id":"28a4ef68-868e-4848-8a0a-3713663622a1","name":"Search Results","type":"folder"}}},{"name":"BaseSubject","item":[],"id":"3e94746f-c4ca-4979-9c9d-be2945876409","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Data Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>fullName</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>firstName</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>middleName</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>lastName</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>ssn</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>dateOfBirth</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>age</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>prefix</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>suffix</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"cc9764de-f0db-4459-b043-c022a2cd5530","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"4322cd95-eb6d-4947-80a5-a2c05bca1575","type":"text/javascript","exec":[""]}}],"_postman_id":"3e94746f-c4ca-4979-9c9d-be2945876409","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"28a4ef68-868e-4848-8a0a-3713663622a1","id":"28a4ef68-868e-4848-8a0a-3713663622a1","name":"Search Results","type":"folder"}}},{"name":"CivilResult","item":[],"id":"279793e1-8db6-4171-a38d-223667527569","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Data Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>jurisdictionsSearched</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>records</strong></td>\n<td><em>List&lt;<a href=\"#a4028dce-ebd5-47be-bf04-3775a5337f08\">CourtRecord</a>&gt;</em></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"dd259f35-3756-4f90-8d91-5b5e4975d1ce","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"0aecb19e-9f44-4fb1-8560-2764045dfac8","type":"text/javascript","exec":[""]}}],"_postman_id":"279793e1-8db6-4171-a38d-223667527569","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"28a4ef68-868e-4848-8a0a-3713663622a1","id":"28a4ef68-868e-4848-8a0a-3713663622a1","name":"Search Results","type":"folder"}}},{"name":"ContactInfo","item":[],"id":"ebf3e935-01df-4a49-8cf1-65c2a9e113d4","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Data Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>phoneNumbers</strong></td>\n<td><em>List</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>faxNumber</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>email</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"b8361075-568d-4597-a561-9c5ba325afa8","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"5275b824-8410-47bc-a038-8a6c11b4b90d","type":"text/javascript","exec":[""]}}],"_postman_id":"ebf3e935-01df-4a49-8cf1-65c2a9e113d4","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"28a4ef68-868e-4848-8a0a-3713663622a1","id":"28a4ef68-868e-4848-8a0a-3713663622a1","name":"Search Results","type":"folder"}}},{"name":"CourtRecord","item":[{"name":"JudgementInfo","item":[],"id":"895d2c2c-825c-4f7a-9ef1-51677a1b2b07","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Data Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>date</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>judgementFor</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>amount</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>flag</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"04bcd06b-5eae-40cd-8165-105bb3ee0706","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"d12f22c6-2a6c-465b-afb9-ab5c8ddbc3ce","type":"text/javascript","exec":[""]}}],"_postman_id":"895d2c2c-825c-4f7a-9ef1-51677a1b2b07","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"28a4ef68-868e-4848-8a0a-3713663622a1","id":"28a4ef68-868e-4848-8a0a-3713663622a1","name":"Search Results","type":"folder"}}}],"id":"ff8af344-b6bc-4599-b559-49a73403325c","description":"<p>CourtRecord</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Data Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>subject</strong></td>\n<td><em><a href=\"#eb2c7d8a-0031-465b-8844-10f0bde3ed93\">Subject</a></em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>caseNumber</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>caseSequenceNumber</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>description</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>date</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>uniqueId</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>status</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>courtCode</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>courtName</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>county</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>type</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>jurisdiction</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>provider</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>stateAbbreviation</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>fileDate</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>comments</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>dispositionInfo</strong></td>\n<td><em><a href=\"#1fff98d5-f34a-4cc8-81cd-1f825f518bcb\">DispositionInfo</a></em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>judgementInfo</strong></td>\n<td><em><a href=\"#ce0fa8ca-073c-40d8-98a2-060ba3c505d3\">JudgementInfo</a></em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>defendants</strong></td>\n<td><em>List&lt;<a href=\"#44803d64-f700-4db4-848e-f0ec3695a6ad\">DefendantPlaintiff</a>&gt;</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>plaintiffs</strong></td>\n<td><em>List&lt;<a href=\"#44803d64-f700-4db4-848e-f0ec3695a6ad\">DefendantPlaintiff</a>&gt;</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>other</strong></td>\n<td><em>Map&lt;String, String&gt;</em></td>\n<td>Map/dict of all other fields</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"d99412a4-9f74-4c94-b0ad-ac22e128b899","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"4a8f5622-7a9a-45b8-b3e2-7ce9acf7d937","type":"text/javascript","exec":[""]}}],"_postman_id":"ff8af344-b6bc-4599-b559-49a73403325c","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"28a4ef68-868e-4848-8a0a-3713663622a1","id":"28a4ef68-868e-4848-8a0a-3713663622a1","name":"Search Results","type":"folder"}}},{"name":"CriminalResult","item":[{"name":"CriminalRecord","item":[{"name":"Incarceration","item":[],"id":"386ed6ab-4cac-4e11-b7d4-7f1a7861143b","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Data Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>releaseDate</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>custodialAgency</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>incarcerationDate</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>sentenceLength</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>tentativeReleaseDate</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>comments</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"af1e8ff4-c75b-42f0-ab95-9952dbb764b3","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"b8a66ae9-8ed5-4e6b-b1f6-44edfc365e86","type":"text/javascript","exec":[""]}}],"_postman_id":"386ed6ab-4cac-4e11-b7d4-7f1a7861143b","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"28a4ef68-868e-4848-8a0a-3713663622a1","id":"28a4ef68-868e-4848-8a0a-3713663622a1","name":"Search Results","type":"folder"}}}],"id":"bc10e1f6-b1cb-4cea-a258-a4fa69b7cf09","description":"<p>In addition to all the fields in <a href=\"#a4028dce-ebd5-47be-bf04-3775a5337f08\">CourtRecord</a>, also contains:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Data Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>offenses</strong></td>\n<td><em>List&lt;<a href=\"#7ce8e3f7-2a7b-4ba0-80ee-befdbf39573c\">Offense</a>&gt;</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>incarceration</strong></td>\n<td><em><a href=\"#02e4bcd8-49dd-4cc2-a4ef-34bb1c5833fc\">Incarceration</a></em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>probation</strong></td>\n<td><em><a href=\"#7fec61d4-560f-4f2c-b8a0-6029a7cab1ad\">ProbationParole</a></em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>parole</strong></td>\n<td><em><a href=\"#7fec61d4-560f-4f2c-b8a0-6029a7cab1ad\">ProbationParole</a></em></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"0b6a0302-b52e-4680-965c-6a459a21b35b","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"4eaa95b7-f54c-4774-936a-11feb89573c6","type":"text/javascript","exec":[""]}}],"_postman_id":"bc10e1f6-b1cb-4cea-a258-a4fa69b7cf09","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"28a4ef68-868e-4848-8a0a-3713663622a1","id":"28a4ef68-868e-4848-8a0a-3713663622a1","name":"Search Results","type":"folder"}}},{"name":"Offense","item":[],"id":"2652bc94-e693-4653-87fb-3a39d588f9e7","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Data Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>type</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>caseNumber</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>countOffense</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>offenseDate</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>comments</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>custodialAgency</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>jurisdiction</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>description</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>probation</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>confinement</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>arrestingAgency</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>originatingAgency</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>statuteNumber</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>plea</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>courtDecision</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>courtCosts</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>court</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>fine</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>arrestDate</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>fileDate</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>SentenceInfo</strong></td>\n<td><em><a href=\"#31008e6a-f589-4edc-8b15-dbc7ba52201a\">SentenceInfo</a></em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>DispositionInfo</strong></td>\n<td><em><a href=\"#1fff98d5-f34a-4cc8-81cd-1f825f518bcb\">DispositionInfo</a></em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>other</strong></td>\n<td><em>Map&lt;String, String&gt;</em></td>\n<td>Map/dict of all other fields</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"063d1919-12f1-4446-94bd-6c177651be14","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"d29e8efa-1e43-4e4e-8d86-45d6b3bf7f80","type":"text/javascript","exec":[""]}}],"_postman_id":"2652bc94-e693-4653-87fb-3a39d588f9e7","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"28a4ef68-868e-4848-8a0a-3713663622a1","id":"28a4ef68-868e-4848-8a0a-3713663622a1","name":"Search Results","type":"folder"}}},{"name":"ProbationParole","item":[],"id":"50b13fa6-2278-4b40-b2fa-bfde86341c04","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Data Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>startDate</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>actualEndDate</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>scheduledEndDate</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>countyOfSupervision</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>length</strong></td>\n<td><em>String</em></td>\n<td>The length of time of the probation/parole.</td>\n</tr>\n<tr>\n<td><strong>comments</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"c8ec91e7-750c-4093-9c82-5c3c557f18b3","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"1a9fa832-9452-473b-a81e-aba04e10c746","type":"text/javascript","exec":[""]}}],"_postman_id":"50b13fa6-2278-4b40-b2fa-bfde86341c04","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"28a4ef68-868e-4848-8a0a-3713663622a1","id":"28a4ef68-868e-4848-8a0a-3713663622a1","name":"Search Results","type":"folder"}}},{"name":"SentenceInfo","item":[],"id":"7bab1539-19b4-48ca-8b4e-9f398b9f62d7","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Data Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>sentence</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>date</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>sentenceLength</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>type</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>description</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>other</strong></td>\n<td><em>Map&lt;String, String&gt;</em></td>\n<td>Map/dict of all other fields</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"fcda2bcb-2aaf-4a66-b9fd-6b48817c0d0c","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"d171cab2-35ab-47ec-a0ee-554863c76226","type":"text/javascript","exec":[""]}}],"_postman_id":"7bab1539-19b4-48ca-8b4e-9f398b9f62d7","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"28a4ef68-868e-4848-8a0a-3713663622a1","id":"28a4ef68-868e-4848-8a0a-3713663622a1","name":"Search Results","type":"folder"}}}],"id":"2c56c122-a4d8-4eab-81f6-4f88c66ea587","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Data Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>jurisdictionsSearched</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>records</strong></td>\n<td><em>List&lt;<a href=\"#646b0efe-2140-4369-81ad-b007c3922b82\">CriminalRecord</a>&gt;</em></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"2c56c122-a4d8-4eab-81f6-4f88c66ea587","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"28a4ef68-868e-4848-8a0a-3713663622a1","id":"28a4ef68-868e-4848-8a0a-3713663622a1","name":"Search Results","type":"folder"}}},{"name":"CustomResult","item":[],"id":"a78d5acc-54dd-4a2a-ab36-160cec70887e","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Data Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>data</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><p>Example Results:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"data\": \"Search result data goes in here. May have &lt;div id=\\\"customdiv\\\"&gt;div&lt;/div&gt; and other html depending on how the CRA fulfills the &lt;em&gt;custom search.&lt;/em&gt;\"\n}\n</code></pre>","event":[{"listen":"prerequest","script":{"id":"e386b5f5-7262-4a30-9fca-ca099ed0a540","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"e8c4b473-9ca2-4b2e-8bb1-520fab0e7fc3","type":"text/javascript","exec":[""]}}],"_postman_id":"a78d5acc-54dd-4a2a-ab36-160cec70887e","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"28a4ef68-868e-4848-8a0a-3713663622a1","id":"28a4ef68-868e-4848-8a0a-3713663622a1","name":"Search Results","type":"folder"}}},{"name":"DefendantPlaintiff","item":[],"id":"441811a8-f698-4c7a-9747-bac810c6e0a4","description":"<p>In addition to all <a href=\"#eb2c7d8a-0031-465b-8844-10f0bde3ed93\">Subject</a> fields, also contains the following:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Data Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>type</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>number</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>otherCaseNumber</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>aliasFlag</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>comments</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>description</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>attorneyName</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>attorneyPhone</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>spouseName</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"73c29ec9-f455-4bc6-aad2-294fe4707fbf","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"a6318375-8746-42f7-b439-498faafb82cc","type":"text/javascript","exec":[""]}}],"_postman_id":"441811a8-f698-4c7a-9747-bac810c6e0a4","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"28a4ef68-868e-4848-8a0a-3713663622a1","id":"28a4ef68-868e-4848-8a0a-3713663622a1","name":"Search Results","type":"folder"}}},{"name":"DispositionInfo","item":[],"id":"6695a497-1100-4923-b99a-da5a18238789","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Data Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>disposition</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>date</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>description</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>other</strong></td>\n<td><em>Map&lt;String, String&gt;</em></td>\n<td>Map/dict of all other fields</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"293aa5b9-00fb-4bfb-b975-94699024c412","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"f4caf226-a7e2-483c-a2f8-41927a3dc662","type":"text/javascript","exec":[""]}}],"_postman_id":"6695a497-1100-4923-b99a-da5a18238789","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"28a4ef68-868e-4848-8a0a-3713663622a1","id":"28a4ef68-868e-4848-8a0a-3713663622a1","name":"Search Results","type":"folder"}}},{"name":"DrivingRecord","item":[{"name":"DrivingEvent","item":[],"id":"64aa21db-2fbe-4708-9453-d956cdc0a054","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Data Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>title</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>other</strong></td>\n<td><em>Map(String, String)</em></td>\n<td>Map/dict of all other fields</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"b6051985-b9de-4189-abad-d90c521d8eb8","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"92e49ac7-47a1-43a1-931a-03289c8e5795","type":"text/javascript","exec":[""]}}],"_postman_id":"64aa21db-2fbe-4708-9453-d956cdc0a054","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"28a4ef68-868e-4848-8a0a-3713663622a1","id":"28a4ef68-868e-4848-8a0a-3713663622a1","name":"Search Results","type":"folder"}}},{"name":"DrivingExaminer","item":[],"id":"484a09e2-c83d-41a3-a5f7-ec6db3b86e92","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Data Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>firstName</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>middleName</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>lastName</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>suffix</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>mdLicenseNumber</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>mdLicenseJurisdiction</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>registrationNumber</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>phoneNumber</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>specialty</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"bea13b03-c669-446b-8e3b-10b327d9c4a2","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"fabaed91-a729-42ae-8d79-592aadf4ce9c","type":"text/javascript","exec":[""]}}],"_postman_id":"484a09e2-c83d-41a3-a5f7-ec6db3b86e92","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"28a4ef68-868e-4848-8a0a-3713663622a1","id":"28a4ef68-868e-4848-8a0a-3713663622a1","name":"Search Results","type":"folder"}}},{"name":"DrivingMedicalCertificate","item":[],"id":"c84d4d9e-00bd-4b02-8da6-96bbc5fbb115","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Data Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>description</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>status</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>issueDate</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>expirationDate</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>receivedByDmv</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>info</strong></td>\n<td><em>List(String)</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>examiner</strong></td>\n<td><a href=\"#c5d88424-b10e-4d6d-8f9c-06b067a36f12\">DrivingExaminer</a></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>restrictions</strong></td>\n<td><em>List(String)</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>variances</strong></td>\n<td>List(<a href=\"#72066cb0-3571-4f25-aeb6-bd3c7119981d\">DrivingVariance</a>)</td>\n<td></td>\n</tr>\n<tr>\n<td><strong>selfCertification</strong></td>\n<td><a href=\"#c1e21fa3-513d-4e75-a042-be77480dab39\">DrivingSelfCertification</a></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"6ee01f20-b80e-4304-a102-8895ff38b7c9","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"0a6d8f59-9dd0-44ae-a6a0-a27a8901a66e","type":"text/javascript","exec":[""]}}],"_postman_id":"c84d4d9e-00bd-4b02-8da6-96bbc5fbb115","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"28a4ef68-868e-4848-8a0a-3713663622a1","id":"28a4ef68-868e-4848-8a0a-3713663622a1","name":"Search Results","type":"folder"}}},{"name":"DrivingSelfCertification","item":[],"id":"b9114e52-9ec0-446b-9048-4ad9e12db4b1","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Data Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>type</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>description</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>effectiveDate</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"87730378-4ffd-4729-a6b0-dd0f0f1c7222","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"80b33b56-f20f-4045-a9b7-fc9fe65b6106","type":"text/javascript","exec":[""]}}],"_postman_id":"b9114e52-9ec0-446b-9048-4ad9e12db4b1","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"28a4ef68-868e-4848-8a0a-3713663622a1","id":"28a4ef68-868e-4848-8a0a-3713663622a1","name":"Search Results","type":"folder"}}},{"name":"DrivingVariance","item":[],"id":"2bbddf9d-9f9e-4298-8213-d49ed3ba90e0","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Data Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>type</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>description</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>issueDate</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>expirationDate</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>rescindedDate</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"268645c5-885b-4973-bb31-82176d1b10bc","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"12cb6c16-38fe-4ab7-9c1e-e7cb5737cb92","type":"text/javascript","exec":[""]}}],"_postman_id":"2bbddf9d-9f9e-4298-8213-d49ed3ba90e0","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"28a4ef68-868e-4848-8a0a-3713663622a1","id":"28a4ef68-868e-4848-8a0a-3713663622a1","name":"Search Results","type":"folder"}}},{"name":"LicenseInfo","item":[],"id":"47a9e2b8-3a86-4d1f-9c3d-86b235a62d4b","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Data Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>type</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>status</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>class</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>classDescription</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>expirationDate</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>issueDate</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>originalIssueDate</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>endorsements</strong></td>\n<td><em>List(String)</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>restrictions</strong></td>\n<td><em>List(String)</em></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"c070c41e-5498-4ea1-ae44-ad485d617ac1","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"9442c228-4fd1-4322-8277-945dcb7018ca","type":"text/javascript","exec":[""]}}],"_postman_id":"47a9e2b8-3a86-4d1f-9c3d-86b235a62d4b","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"28a4ef68-868e-4848-8a0a-3713663622a1","id":"28a4ef68-868e-4848-8a0a-3713663622a1","name":"Search Results","type":"folder"}}}],"id":"398f41aa-ef05-492b-9e71-c9b9258c417a","description":"<p>In addition to all fields in <a href=\"#512f9d6c-7f4a-4571-adb8-914860ceb231\">License</a>, also contains the following:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Data Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>driverId</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>historyLength</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>suspensionSummary</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>licenseInfos</strong></td>\n<td><em>List&lt;<a href=\"#b68ba6d8-17a9-4628-ae47-be434de126fd\">LicenseInfo</a>&gt;</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>subject</strong></td>\n<td><em><a href=\"#eb2c7d8a-0031-465b-8844-10f0bde3ed93\">Subject</a></em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>other</strong></td>\n<td><em>Map&lt;String, String&gt;</em></td>\n<td>Map/dict of all other fields</td>\n</tr>\n<tr>\n<td><strong>messages</strong></td>\n<td><em>List</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>events</strong></td>\n<td><em>List&lt;<a href=\"#80941480-fd09-4989-b60f-d765d5e10685\">DrivingEvent</a>&gt;</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>medicalCertificates</strong></td>\n<td><em>List&lt;<a href=\"#da9c0deb-14a0-4d66-a286-ea6efe1dcf7a\">DrivingMedicalCertificate</a>&gt;</em></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"f429f318-f2eb-49c7-b5e1-419de77c9d6d","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"b5f4847e-e86e-42c5-96a2-d23ae525dc38","type":"text/javascript","exec":[""]}}],"_postman_id":"398f41aa-ef05-492b-9e71-c9b9258c417a","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"28a4ef68-868e-4848-8a0a-3713663622a1","id":"28a4ef68-868e-4848-8a0a-3713663622a1","name":"Search Results","type":"folder"}}},{"name":"License","item":[],"id":"0e3cac8d-de03-4663-979a-5f28e757feb1","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Data Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>firstName</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>middleName</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>lastName</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>dateOfBirth</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>licenseState</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>licenseNumber</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>licenseType</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>issueDate</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>expirationDate</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"0e3cac8d-de03-4663-979a-5f28e757feb1","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"28a4ef68-868e-4848-8a0a-3713663622a1","id":"28a4ef68-868e-4848-8a0a-3713663622a1","name":"Search Results","type":"folder"}}},{"name":"PublicRecord","item":[],"id":"eab9c2b3-ef94-47e2-9bc6-a6365e066101","description":"<p>In addition to all fields within <a href=\"#a4028dce-ebd5-47be-bf04-3775a5337f08\">CourtRecord</a>, also contains the following:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Data Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>statusDate</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>reportToken</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>courtAddress</strong></td>\n<td><em><a href=\"#38bdf8bf-7c36-4120-bf21-7ea75b4aae4f\">Address</a></em></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"eab9c2b3-ef94-47e2-9bc6-a6365e066101","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"28a4ef68-868e-4848-8a0a-3713663622a1","id":"28a4ef68-868e-4848-8a0a-3713663622a1","name":"Search Results","type":"folder"}}},{"name":"RentalRecord","item":[],"id":"66fb0dbd-aea1-496c-89c7-75c0ab58a4ab","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Data Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>inDispute</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>statement</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>claimAmount</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>caseConsumerStatement</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>caseYearDate</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>bookNumber</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>pageNumber</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>resultCode</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>resultDate</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>inputBy</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>inputDate</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>executedDate</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>receivedDate</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>satisfiedDate</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>sourceId</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>courtSubCode</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>countyFips</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>stateFips</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>affiliate</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>possessionFlag</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>possessionFlagDescription</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>region</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>otherCaseNumber</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>message</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>verifiedDate</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"66fb0dbd-aea1-496c-89c7-75c0ab58a4ab","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"28a4ef68-868e-4848-8a0a-3713663622a1","id":"28a4ef68-868e-4848-8a0a-3713663622a1","name":"Search Results","type":"folder"}}},{"name":"SSNInfo","item":[],"id":"3eefbe09-9264-4e9a-af5b-2491fc6bdc2d","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Data Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>ssn</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>valid</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>issuedLocation</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>deceased</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>message</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>issuedDateRange</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>issuedStartDate</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>issuedEndDate</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"3eefbe09-9264-4e9a-af5b-2491fc6bdc2d","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"28a4ef68-868e-4848-8a0a-3713663622a1","id":"28a4ef68-868e-4848-8a0a-3713663622a1","name":"Search Results","type":"folder"}}},{"name":"Subject","item":[],"id":"8f28b4e8-4ef6-4efa-a8bf-fb27763fdc60","description":"<p>In addition to the <a href=\"#27bb5caf-8ad6-44bf-bdd6-5e0893cf9dfa\">BaseSubject</a> fields, also contains the following:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Data Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>gender</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>race</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>height</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>weight</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>hairColor</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>eyeColor</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>imageUrl</strong></td>\n<td><em>String</em></td>\n<td>Some data providers will provide a link to an image of the subject.</td>\n</tr>\n<tr>\n<td><strong>stateUrl</strong></td>\n<td><em>String</em></td>\n<td>Some data providers will provide a link to an image of the subject.</td>\n</tr>\n<tr>\n<td><strong>addresses</strong></td>\n<td><em>List&lt;<a href=\"#38bdf8bf-7c36-4120-bf21-7ea75b4aae4f\">Address</a>&gt;</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>aliases</strong></td>\n<td><em>List&lt;<a href=\"#aaf7d966-834c-4576-b8c9-1a18a0723883\">Alias</a>&gt;</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>contactInfo</strong></td>\n<td><em><a href=\"#74760695-a195-423b-b739-0b277458e6fb\">ContactInfo</a></em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>other</strong></td>\n<td><em>Map&lt;String, String&gt;</em></td>\n<td>Map/dict of all other fields</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"5565e6b5-44fb-4735-a622-2b6c417fcba7","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"8530d611-ff19-40fb-be14-d57f505da87f","type":"text/javascript","exec":[""]}}],"_postman_id":"8f28b4e8-4ef6-4efa-a8bf-fb27763fdc60","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"28a4ef68-868e-4848-8a0a-3713663622a1","id":"28a4ef68-868e-4848-8a0a-3713663622a1","name":"Search Results","type":"folder"}}},{"name":"VerificationResult","item":[],"id":"297fa5b3-46ec-4ce3-abc7-5c39b4a301be","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Data Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>verificationResponse</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>subject</strong></td>\n<td><em><a href=\"#eb2c7d8a-0031-465b-8844-10f0bde3ed93\">Subject</a></em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>questionsAnswers</strong></td>\n<td><em>Map&lt;String, String&gt;</em></td>\n<td>Map/dict of verifier question &amp; answers</td>\n</tr>\n<tr>\n<td><strong>comments</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>notes</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"36bdbdbe-170a-4073-9004-945ea1889dc8","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"794dde83-ee7c-46c5-ba55-7204a8843451","type":"text/javascript","exec":[""]}}],"_postman_id":"297fa5b3-46ec-4ce3-abc7-5c39b4a301be","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"28a4ef68-868e-4848-8a0a-3713663622a1","id":"28a4ef68-868e-4848-8a0a-3713663622a1","name":"Search Results","type":"folder"}}},{"name":"Verifier","item":[],"id":"213ee111-6520-43be-96a0-d47996369ab0","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Data Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>name</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>contactInfo</strong></td>\n<td><em><a href=\"#74760695-a195-423b-b739-0b277458e6fb\">ContactInfo</a></em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>address</strong></td>\n<td><em><a href=\"#38bdf8bf-7c36-4120-bf21-7ea75b4aae4f\">Address</a></em></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>relationship</strong></td>\n<td><em>String</em></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"35b18998-a64f-400d-a99b-3725020bd378","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"a564aa18-c48b-4f81-a718-969339c7fdc1","type":"text/javascript","exec":[""]}}],"_postman_id":"213ee111-6520-43be-96a0-d47996369ab0","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"28a4ef68-868e-4848-8a0a-3713663622a1","id":"28a4ef68-868e-4848-8a0a-3713663622a1","name":"Search Results","type":"folder"}}}],"id":"42ce8f49-07fc-4e24-9750-93a7259639eb","event":[{"listen":"prerequest","script":{"id":"d26ef229-4f76-4fea-8f7a-6a4f86274c18","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"f28fb28d-4586-44be-a5a9-74272f6798f8","type":"text/javascript","exec":[""]}}],"_postman_id":"42ce8f49-07fc-4e24-9750-93a7259639eb","description":"","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"28a4ef68-868e-4848-8a0a-3713663622a1","id":"28a4ef68-868e-4848-8a0a-3713663622a1","name":"Search Results","type":"folder"}}}],"id":"28a4ef68-868e-4848-8a0a-3713663622a1","description":"<p>When retrieving search results, each search will have a different model depending the search type. For example, criminal searches will have a list of criminal records and offenses, whereas an employment search will have fields on the verification responses, etc. </p>\n","auth":{"type":"noauth","isInherited":false},"event":[{"listen":"prerequest","script":{"id":"f40ae8cc-67a8-4dd0-b4f8-a2f09364b8b6","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"53169a3d-a114-4b8c-8472-dafa8611757d","type":"text/javascript","exec":[""]}}],"_postman_id":"28a4ef68-868e-4848-8a0a-3713663622a1"},{"name":"Webhooks","item":[],"id":"7e76de60-f1b8-4ce6-a431-08a670a8a56b","description":"<p>You can subscribe to TazWorks Platform events using the API Console. Event subscriptions, webhook endpoints, and authentication can be defined for each API application. Example event subscriptions are listed below. Check the Console for a full list of supported events. New events will be periodically added to our system.</p>\n<ul>\n<li>order.completed</li>\n<li>order.created</li>\n<li>order.canceled</li>\n<li>order.search.completed</li>\n<li>order.search.created</li>\n<li>client.updated</li>\n<li>client.created</li>\n<li>client.deleted</li>\n<li>More! Check the Console for a full list of events.</li>\n</ul>\n<p><strong>Webhook Best Practices</strong></p>\n<ul>\n<li>Accept the webhook request immediately with a 2XX HTTP status code before doing processing. Our webhook deliverer has a 5 second HTTP timeout. If you don't respond with a 2XX status code within 5 seconds, we will attempt to send the webhook again according to our retry policy.</li>\n<li>Handle duplicate events or outdated events by recording and checking the timestamp of the previously received event. Although we have restrictions in place, it is possible that your webhook endpoint may receive the same event twice. By using and recording the timestamp in the webhook body, you will be able to tell if the message is a duplicate, or perhaps an outdated event (due to our retry policy).</li>\n</ul>\n<p><strong>Retry Policy</strong>\nOur webhook system has automatic retries built in. Below is our retry policy:</p>\n<ul>\n<li>First delivery attempt: immediately.</li>\n<li>Second delivery attempt: about 1 minute after the first attempt.</li>\n<li>Third delivery attempt: about 2 minutes after the second attempt</li>\n<li>After the third attempt, we place the webhook in a queue and reattempt delivery about every hour, for 10 days.</li>\n</ul>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Data Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>version</strong></td>\n<td><em>Long</em></td>\n<td>The version of the webhook message. Only version 1 is currently implemented.</td>\n</tr>\n<tr>\n<td><strong>resourceGuid</strong></td>\n<td><em>guid</em></td>\n<td>The resource guid that the event is for.</td>\n</tr>\n<tr>\n<td><strong>event</strong></td>\n<td><em>string</em></td>\n<td>The webhook event</td>\n</tr>\n<tr>\n<td><strong>resourcePath</strong></td>\n<td><em>string</em></td>\n<td>The rest path (minus the api version, e.g. /v1) to pick up the changes.</td>\n</tr>\n<tr>\n<td><strong>timestamp</strong></td>\n<td><em>Long</em></td>\n<td>Timestamp of the event.</td>\n</tr>\n<tr>\n<td><strong>baseClientGuid</strong></td>\n<td><em>string</em></td>\n<td>For clients with a long hierarchy chain, we will give you the \"base\" or top-level client guid which could help you identify which integration instance the webhook is for.</td>\n</tr>\n<tr>\n<td><strong>instanceGuid</strong></td>\n<td><em>string</em></td>\n<td>Identifies the application instance. Could help you identify which authorization token(s) are needed to pick up the changes.</td>\n</tr>\n</tbody>\n</table>\n</div><p>Example Webhook:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Headers:\nContent-Type: application/json\nAuthorization: &lt;YourOptionalWebhookAuth&gt;\n\nBody:\n{\n  \"version\": 1,\n  \"resourceGuid\": \"3ebb89c2-391c-406b-a529-fc2841e2cfa2\",\n  \"event\": \"order.search.completed\",\n  \"resourcePath\": \"/clients/a68f2ea1-d7ce-46ff-8919-c3839b007a43/orders/5da87ec6-bb3b-4ab1-b0c7-b1112822a80c/searches/3ebb89c2-391c-406b-a529-fc2841e2cfa2\",\n  \"timestamp\": 1580153480,\n  \"baseClientGuid\": \"a68f2ea1-d7ce-46ff-8919-c3839b007a43\",\n  \"instanceGuid\": \"ed583a4c-50a9-419f-9c89-f4c7e04a5cb6\"\n}\n</code></pre>","auth":{"type":"noauth","isInherited":false},"event":[{"listen":"prerequest","script":{"id":"76e349d7-ac51-4af9-827f-1160925b0f20","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"15ce563f-a6cd-4054-a362-56e0debe8cac","type":"text/javascript","exec":[""]}}],"_postman_id":"7e76de60-f1b8-4ce6-a431-08a670a8a56b"},{"name":"Search Types","item":[],"id":"dcbf3115-99a9-47f5-b3a7-7348707487b7","description":"<ul>\n<li><p>ADDITIONAL_EMPLOYMENT_VERIFICATION</p>\n</li>\n<li><p>ASSUMED_NAME_RECORD</p>\n</li>\n<li><p>BANKRUPTCY_FILINGS</p>\n</li>\n<li><p>COMMERCIAL_DRIVERS_LICENSE</p>\n</li>\n<li><p>COUNTY_CIVIL_RECORD</p>\n</li>\n<li><p>COUNTY_CRIMINAL_RECORD</p>\n</li>\n<li><p>CREDENTIALS_CUSTOM</p>\n</li>\n<li><p>CREDIT_CUSTOM</p>\n</li>\n<li><p>CREDIT_REPORT</p>\n</li>\n<li><p>EDUCATION_VERIFICATION</p>\n</li>\n<li><p>EMPLOYMENT_VERIFICATION</p>\n</li>\n<li><p>EXECUTIVE_SUMMARY</p>\n</li>\n<li><p>FEDERAL_CIVIL_RECORD</p>\n</li>\n<li><p>FEDERAL_CRIMINAL_RECORD</p>\n</li>\n<li><p>GLOBAL_SECURITY_WATCH</p>\n</li>\n<li><p>HEALTHCARE_COMPLIANCE</p>\n</li>\n<li><p>IDENTITY_DEVELOPMENT_CUSTOM</p>\n</li>\n<li><p>INSTANT_DRIVING</p>\n</li>\n<li><p>INTERNATIONAL_CRIMINAL_RECORD</p>\n</li>\n<li><p>INVESTIGATIVE_CUSTOM</p>\n</li>\n<li><p>LIEN_AND_JUDGMENT</p>\n</li>\n<li><p>NATIONAL_CRIMINAL_DATABASE</p>\n</li>\n<li><p>NATIONAL_CRIMINAL_DATABASE_ALIAS</p>\n</li>\n<li><p>NATIONAL_RENTAL_RECORD_DATABASE</p>\n</li>\n<li><p>PERSON_SEARCH</p>\n</li>\n<li><p>PERSONAL_REFERENCE_VERIFICATION</p>\n</li>\n<li><p>PROFESSIONAL_LICENSE</p>\n</li>\n<li><p>PROFESSIONAL_REFERENCE_VERIFICATION</p>\n</li>\n<li><p>PSP_CRASH_INSPECTION</p>\n</li>\n<li><p>PUBLIC_RECORDS</p>\n</li>\n<li><p>REFERENCE_VERIFICATION</p>\n</li>\n<li><p>REPORT_SUMMARIZATION_CUSTOM</p>\n</li>\n<li><p>RESIDENCE_VERIFICATION</p>\n</li>\n<li><p>SCORECARD_PRO</p>\n</li>\n<li><p>SEX_OFFENDER_RECORD</p>\n</li>\n<li><p>SOCIAL_MEDIA</p>\n</li>\n<li><p>SOCIAL_SECURITY_SEARCH</p>\n</li>\n<li><p>STATE_CRIMINAL_COURT</p>\n</li>\n<li><p>STATE_CRIMINAL_DATABASE</p>\n</li>\n<li><p>STATE_RENTAL_RECORD_DATABASE</p>\n</li>\n<li><p>SUBSTANCE_ABUSE</p>\n</li>\n<li><p>SUBSTANCE_ABUSE_SCREENING_CUSTOM</p>\n</li>\n<li><p>TENANT_SCORECARD</p>\n</li>\n<li><p>VERIFICATION_CUSTOM</p>\n</li>\n<li><p>WORKERS_COMPENSATION</p>\n</li>\n</ul>\n","_postman_id":"dcbf3115-99a9-47f5-b3a7-7348707487b7","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}}},{"name":"Admin","item":[{"name":"Products","item":[{"name":"All Charge Tables","id":"9c762a9f-60bd-42a9-8d40-1bead3ec42d8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/admin/product/chargetable","description":"<p><strong>CRA API</strong></p>\n<p>Retrieve a list of charge tables.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","admin","product","chargetable"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"a6b20671-d2fb-4cca-b656-16f528b97fd5","name":"All Charge Tables","originalRequest":{"method":"GET","header":[{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/admin/product/chargetable"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"chargeTableGuid\": \"3c35e0a1-5c92-4f6a-8982-7946463bb8f8\",\n        \"name\": \"2020 MVR\",\n        \"description\": \"\",\n        \"type\": \"State MVR\",\n        \"modifiedDate\": 1619039888000,\n        \"inUse\": true\n    },\n    {\n        \"chargeTableGuid\": \"7f60843f-8da1-485e-a90e-957597fc4eb0\",\n        \"name\": \"Charge Me\",\n        \"description\": \"wow, I want to pay\",\n        \"type\": \"State MVR\",\n        \"modifiedDate\": 1556545513000,\n        \"inUse\": true\n    },\n    {\n        \"chargeTableGuid\": \"9cd85a3a-8645-4b36-bb5a-f7086948c492\",\n        \"name\": \"County Access Fees\",\n        \"description\": \"Access Fees Only\",\n        \"type\": \"County\",\n        \"modifiedDate\": 1637706917000,\n        \"inUse\": true\n    },\n    {\n        \"chargeTableGuid\": \"b5f18c3e-47eb-4c15-b2a9-87c17685539e\",\n        \"name\": \"County Charges\",\n        \"description\": \"Charges Only for Counties\",\n        \"type\": \"County\",\n        \"modifiedDate\": 1556550077000,\n        \"inUse\": false\n    }\n]"}],"_postman_id":"9c762a9f-60bd-42a9-8d40-1bead3ec42d8"},{"name":"Charge Table","id":"7b8b04f9-1342-4e6d-9427-7acdf875e51b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/admin/product/chargetable//{{charge-table-guid}}","description":"<p><strong>CRA API</strong></p>\n<p>Retrieve information about a specific charge table and its related charges.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","admin","product","chargetable","","{{charge-table-guid}}"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"2beec3f3-9f11-4c40-91cc-e04e4cd12a23","name":"Charge Table","originalRequest":{"method":"GET","header":[{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/admin/product/chargetable//{{charge-table-guid}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"chargeTableGuid\": \"3c35e0a1-5c92-4f6a-8982-7946463bb8f8\",\n    \"name\": \"2020 MVR\",\n    \"description\": \"Really Cool Charges\",\n    \"type\": \"State MVR\",\n    \"chargeOptions\": \"Court Access Fee\",\n    \"charges\": [\n        {\n            \"jurisdiction\": \"Colorado\",\n            \"charge\": 0.0,\n            \"courtAccessFee\": 3.45,\n            \"denverCourtAccessFee\": 0.0,\n            \"modifiedDate\": 1619545708000\n        },\n        {\n            \"jurisdiction\": \"Minnesota [All]\",\n            \"charge\": 0.0,\n            \"courtAccessFee\": 17.12,\n            \"denverCourtAccessFee\": 0.0,\n            \"modifiedDate\": 1619545708000\n        },\n        {\n            \"jurisdiction\": \"Oregon [3 Years]\",\n            \"charge\": 0.0,\n            \"courtAccessFee\": 2.98,\n            \"denverCourtAccessFee\": 0.0,\n            \"modifiedDate\": 1619545708000\n        },\n        {\n            \"jurisdiction\": \"Oregon [Employment]\",\n            \"charge\": 0.0,\n            \"courtAccessFee\": 1.9,\n            \"denverCourtAccessFee\": 0.0,\n            \"modifiedDate\": 1619545708000\n        },\n        {\n            \"jurisdiction\": \"Texas [5 Years - CDL Only]\",\n            \"charge\": 0.0,\n            \"courtAccessFee\": 15.4,\n            \"denverCourtAccessFee\": 0.0,\n            \"modifiedDate\": 1619545708000\n        }\n    ]\n}"}],"_postman_id":"7b8b04f9-1342-4e6d-9427-7acdf875e51b"},{"name":"All Products","id":"e2c716e7-0e7f-4d41-815f-a7bc3da878ac","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"{{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/admin/product?page=0&size=30","description":"<p><strong>CRA API</strong></p>\n<p>Get a list of all products.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","admin","product"],"host":["{{host}}"],"query":[{"description":{"content":"<p>Specify the page to retrieve. Defaults to 0.</p>\n","type":"text/plain"},"key":"page","value":"0"},{"description":{"content":"<p>Specify the number of records per page.  Defaults to 30.</p>\n","type":"text/plain"},"key":"size","value":"30"}],"variable":[]}},"response":[{"id":"738060f8-bd7b-4056-ad90-4374bf1ff978","name":"All Products","originalRequest":{"method":"GET","header":[{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"{{jwt-token}}","type":"text"}],"url":{"raw":"https://{{host}}/v1/admin/product?page=0&size=30","protocol":"https","host":["{{host}}"],"path":["v1","admin","product"],"query":[{"key":"page","value":"0","description":"Specify the page to retrieve. Defaults to 0."},{"key":"size","value":"30","description":"Specify the number of records per page.  Defaults to 30."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"productGuid\": \"8390e28f-417d-4280-83b5-f61171a02039\",\n        \"name\": \"Bunch of Verification Customs\",\n        \"description\": \"Using All Standard Required fields\",\n        \"notes\": \"For Testing Purposes, Do not process\",\n        \"orderLayoutGuid\": \"87d7fbd4-4904-11ea-98f3-2d73bc567a5f\",\n        \"orderLayoutName\": \"Standard Layout\",\n        \"requiredFieldTableGuid\": \"98c2036a-fd7d-40cd-8700-55bb3c862c0e\",\n        \"requiredFieldTableName\": \"Basic - System Only\"\n    },\n    {\n        \"productGuid\": \"c37dedf6-07b9-4f77-a56f-0319daeee0bc\",\n        \"name\": \"Business Custom\",\n        \"notes\": \"For Endless Clients\",\n        \"orderLayoutGuid\": \"87d7fbd4-4904-11ea-98f3-2d73bc567a5f\",\n        \"orderLayoutName\": \"Standard Layout\",\n        \"requiredFieldTableGuid\": \"98c2036a-fd7d-40cd-8700-55bb3c862c0e\",\n        \"requiredFieldTableName\": \"Basic - System Only\"\n    },\n    {\n        \"productGuid\": \"ab9259c6-87c7-4cf9-9938-3f01377fb556\",\n        \"name\": \"Business Individual Custom\",\n        \"description\": \"Amazing custom product\",\n        \"orderLayoutGuid\": \"87d7fbd4-4904-11ea-98f3-2d73bc567a5f\",\n        \"orderLayoutName\": \"Standard Layout\",\n        \"requiredFieldTableGuid\": \"98c2036a-fd7d-40cd-8700-55bb3c862c0e\",\n        \"requiredFieldTableName\": \"Basic - System Only\"\n    },\n    {\n        \"productGuid\": \"3a769392-3cb4-4909-ac53-f2b14de035ff\",\n        \"name\": \"CDL Info System Product\",\n        \"orderLayoutGuid\": \"87d7fbd4-4904-11ea-98f3-2d73bc567a5f\",\n        \"orderLayoutName\": \"Standard Layout\",\n        \"requiredFieldTableGuid\": \"98c2036a-fd7d-40cd-8700-55bb3c862c0e\",\n        \"requiredFieldTableName\": \"Basic - System Only\"\n    },\n    {\n        \"productGuid\": \"5aa4cfc3-82b5-44e7-acab-3a714a22157c\",\n        \"name\": \"CDLIS & County Crim\",\n        \"orderLayoutGuid\": \"87d7fbd4-4904-11ea-98f3-2d73bc567a5f\",\n        \"orderLayoutName\": \"Standard Layout\",\n        \"requiredFieldTableGuid\": \"72cf5dc7-cfdd-47e1-a28f-605268cd58bc\",\n        \"requiredFieldTableName\": \"CDLIS Fields\"\n    }\n]"}],"_postman_id":"e2c716e7-0e7f-4d41-815f-a7bc3da878ac"},{"name":"Single Product","id":"3c2f989e-48a9-4f0f-b75c-e1bafabe2a93","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"{{jwt-token}}"}],"url":"https://{{host}}/v1/admin/product/{{product-guid}}","description":"<p><strong>CRA API</strong></p>\n<p>Get general information about a specific product and which searches are included with it.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","admin","product","{{product-guid}}"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"9d6029af-b0f2-4539-9035-7053d5a0745e","name":"Single Product","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{jwt-token}}"}],"url":"https://{{host}}/v1/admin/product/{{productGuid}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"productGuid\": \"c3400099-7308-4092-8a48-80d53b3b0084\",\n    \"name\": \"General Product Info Tester Recurring\",\n    \"description\": \"this one is marked as recurring\",\n    \"orderLayoutGuid\": \"87d7fbd4-4904-11ea-98f3-2d73bc567a5f\",\n    \"orderLayoutName\": \"Standard Layout\",\n    \"requiredFieldTableGuid\": \"98c2036a-fd7d-40cd-8700-55bb3c862c0e\",\n    \"requiredFieldTableName\": \"Basic - System Only\",\n    \"packagePrice\": 35.0,\n    \"minYearsAddressHistory\": 2,\n    \"minNumberPreviousAddresses\": 4,\n    \"applicantPageInstructions\": \"fill this out\",\n    \"addressPageInstructions\": \"instructions for address\",\n    \"jstSettings\": {\n        \"orderTimeSelectionRule\": \"EMPOWERMENT\",\n        \"jurisdictionDevelopedUsing\": \"ZIP\",\n        \"replacePartialOrMissingDob\": true,\n        \"excludeAliasesFromJurisdictions\": false,\n        \"includeSearchesBasedOnHeader\": true,\n        \"allowSkippingNonJurisdictional\": false,\n        \"requireAtLeastOneSearch\": true,\n        \"includeNameVariations\": true,\n        \"firstNameMatchOn\": \"FIRST_FOUR_LETTERS\",\n        \"lastNameMatchOn\": \"EXACT_MATCH\"\n    },\n    \"includedSearches\": {\n        \"investigativeSearches\": [\n            {\n                \"type\": \"COUNTY_CIVIL_RECORD\",\n                \"displayName\": \"County Civil Records Search\",\n                \"orderedByDefault\": true\n            }\n        ],\n        \"credentialSearches\": [\n            {\n                \"type\": \"CREDENTIALS_CUSTOM\",\n                \"displayName\": \"Raisin Search\",\n                \"customSearchGuid\": \"e49ca08e-329f-4a42-a83e-8bba8d46cd91\",\n                \"orderedByDefault\": true\n            }\n        ]\n    },\n    \"recurringSearches\": {\n        \"investigativeSearches\": [\n            {\n                \"type\": \"COUNTY_CIVIL_RECORD\",\n                \"displayName\": \"County Civil Records Search\",\n                \"orderedByDefault\": true\n            }\n        ]\n    },\n    \"recurring\": true\n}"}],"_postman_id":"3c2f989e-48a9-4f0f-b75c-e1bafabe2a93"},{"name":"Product Searches","id":"e8f5bd24-419f-4e42-9572-333840febeb2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"{{jwt-token}}","type":"text"}],"url":"https://{{host}}/v1/admin/product/{{product-guid}}/searches?searchType=CREDIT_REPORT&recurring=true","description":"<p><strong>CRA API</strong></p>\n<p>Get the specific settings on the searches on a product. You can add the optional <code>searchType</code> parameter to filter by a specific search. You can also specify the optional <code>recurring</code> parameter to get the recurring details. You can combine both of these parameters to view the recurring details for a specific search.</p>\n<p>The list of search types can be found in this documentation under the <strong>Search Types</strong> folder.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","admin","product","{{product-guid}}","searches"],"host":["{{host}}"],"query":[{"description":{"content":"<p>Optional filter by search type</p>\n","type":"text/plain"},"key":"searchType","value":"CREDIT_REPORT"},{"description":{"content":"<p>to return recurring data instead</p>\n","type":"text/plain"},"key":"recurring","value":"true"}],"variable":[]}},"response":[{"id":"f674084b-e9e2-4c49-a5a0-32fb5d0996a7","name":"All Search Types","originalRequest":{"method":"GET","header":[{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"{{jwt-token}}","type":"text"}],"url":{"raw":"https://{{host}}/v1/admin/product/{{product-guid}}/searches","protocol":"https","host":["{{host}}"],"path":["v1","admin","product","{{product-guid}}","searches"],"query":[{"key":"searchType","value":"CREDIT_REPORT","description":"Optional filter by search type","disabled":true},{"key":"recurring","value":"true","description":"to return recurring data instead","disabled":true}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"productGuid\": \"9efa9526-964f-478f-af49-88696e4dddcc\",\n    \"searchDetails\": [\n        {\n            \"searchType\": \"COMMERCIAL_DRIVERS_LICENSE\",\n            \"maxNumberSearches\": 99,\n            \"providers\": [\n                {\n                    \"providerGuid\": \"2163dff0-3331-11ea-acb8-7ece90654a41\",\n                    \"providerName\": \"SambaSafety\",\n                    \"orderingOption\": \"OPTIONAL\",\n                    \"price\": 6.0\n                },\n                {\n                    \"providerGuid\": \"21646254-3331-11ea-acb8-7ece90654a41\",\n                    \"providerName\": \"Compass\",\n                    \"orderingOption\": \"OPTIONAL\",\n                    \"price\": 6.0\n                }\n            ],\n            \"alwaysGoPendingReview\": true,\n            \"licenseNotFoundGoesPending\": true\n        },\n        {\n            \"searchType\": \"COUNTY_CRIMINAL_RECORD\",\n            \"orderingOption\": \"OPTIONAL\",\n            \"searchPrice\": 6.65,\n            \"maxNumberSearches\": 99,\n            \"unlimitedPrimaryNameSearchesAtNoCharge\": false,\n            \"overrideVendorRouting\": true,\n            \"overrideVendor\": {\n                \"vendorGuid\": \"ec9acfe6-b948-42db-8e82-a809c93a48e8\",\n                \"vendorName\": \"Baxter Research\"\n            },\n            \"yearsAddressHistory\": 7,\n            \"doWildcardNameSearch\": false,\n            \"useJurisdictionOverrideTemplate\": false,\n            \"overrideJurisdictionSettingsAtOrderTime\": false,\n            \"requestCourtDocuments\": false,\n            \"felonyMisdemeanor\": \"FELONY_WITH_MISDEMANOR\",\n            \"requestYearsSearchCount\": 1,\n            \"overrideRequestedYearsAtOrderTime\": false\n        },\n        {\n            \"searchType\": \"CREDIT_REPORT\",\n            \"providers\": [\n                {\n                    \"providerGuid\": \"2163e446-3331-11ea-acb8-7ece90654a41\",\n                    \"providerName\": \"Experian\",\n                    \"orderingOption\": \"OPTIONAL\",\n                    \"price\": 13.25\n                },\n                {\n                    \"providerGuid\": \"2163e446-3331-11ea-acb8-7ece90654a41\",\n                    \"providerName\": \"Experian\",\n                    \"orderingOption\": \"OPTIONAL\",\n                    \"repositoryCodeGuid\": \"217e6ab4-3331-11ea-acb8-7ece90654a41\",\n                    \"repositoryCode\": \"support\",\n                    \"price\": 11.25,\n                    \"surchargeTable\": {\n                        \"chargeTableGuid\": \"cb103fcd-f235-4f4d-8e95-0f800e948ea1\",\n                        \"name\": \"CR Surcharge\"\n                    }\n                }\n            ],\n            \"allowCombinationPricing\": false,\n            \"prepullAtOrTime\": false,\n            \"tradelineSort\": \"NO_SORT\",\n            \"populateAccountNumbers\": false,\n            \"populateBureauFlags\": false,\n            \"populateLateDates\": true,\n            \"populateScoreReasonCodes\": true,\n            \"populateSocialSecurity\": false,\n            \"openAmexPaymentPercent\": 5,\n            \"requireTenantScorecard\": false\n        },\n        {\n            \"searchType\": \"PERSON_SEARCH\",\n            \"providers\": [\n                {\n                    \"providerGuid\": \"55c6970c-0d12-11ed-b3be-86e7f1023401\",\n                    \"providerName\": \"Trade House Data Premium\",\n                    \"orderingOption\": \"DEFAULT\",\n                    \"price\": 6.0\n                },\n                {\n                    \"providerGuid\": \"21640ab6-3331-11ea-acb8-7ece90654a41\",\n                    \"providerName\": \"Trade House Data\",\n                    \"orderingOption\": \"DEFAULT\",\n                    \"price\": 14.0\n                },\n                {\n                    \"providerGuid\": \"2163de9c-3331-11ea-acb8-7ece90654a41\",\n                    \"providerName\": \"BGC\",\n                    \"orderingOption\": \"OPTIONAL\",\n                    \"price\": 20.0\n                }\n            ],\n            \"alwaysGoPendingReview\": true,\n            \"filterAutomaticallySelectedRecords\": false,\n            \"filterRecordsWithNoDate\": false,\n            \"prepullAtOrderTime\": false,\n            \"displayDateOfBirth\": true,\n            \"displayTelephoneSubscriber\": false,\n            \"displayAddress\": false,\n            \"reportPresentationFormat\": \"DETAILED\",\n            \"nameAndSSNSend\": \"SSN_ONLY\",\n            \"sendDateOfBirth\": false,\n            \"sendAddress\": false\n        },\n        {\n            \"searchType\": \"PROFESSIONAL_LICENSE\",\n            \"orderingOption\": \"DEFAULT\",\n            \"searchPrice\": 36.0,\n            \"maxNumberSearches\": 99,\n            \"addInvestigativeQuestions\": false\n        }\n    ]\n}"},{"id":"d37584c1-d5fc-4698-aee3-1ae54ab9a6c8","name":"Specific Type","originalRequest":{"method":"GET","header":[{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"{{jwt-token}}","type":"text"}],"url":{"raw":"https://{{host}}/v1/admin/product/{{product-guid}}/searches?searchType=CREDIT_REPORT","protocol":"https","host":["{{host}}"],"path":["v1","admin","product","{{product-guid}}","searches"],"query":[{"key":"searchType","value":"CREDIT_REPORT","description":"Optional filter by search type"},{"key":"recurring","value":"true","description":"to return recurring data instead","disabled":true}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"productGuid\": \"9efa9526-964f-478f-af49-88696e4dddcc\",\n    \"searchDetails\": [\n        {\n            \"searchType\": \"CREDIT_REPORT\",\n            \"providers\": [\n                {\n                    \"providerGuid\": \"2163e446-3331-11ea-acb8-7ece90654a41\",\n                    \"providerName\": \"Experian\",\n                    \"orderingOption\": \"OPTIONAL\",\n                    \"price\": 13.25\n                },\n                {\n                    \"providerGuid\": \"2163e446-3331-11ea-acb8-7ece90654a41\",\n                    \"providerName\": \"Experian\",\n                    \"orderingOption\": \"OPTIONAL\",\n                    \"repositoryCodeGuid\": \"217e6ab4-3331-11ea-acb8-7ece90654a41\",\n                    \"repositoryCode\": \"support\",\n                    \"price\": 11.25,\n                    \"surchargeTable\": {\n                        \"chargeTableGuid\": \"cb103fcd-f235-4f4d-8e95-0f800e948ea1\",\n                        \"name\": \"CR Surcharge\"\n                    }\n                }\n            ],\n            \"allowCombinationPricing\": false,\n            \"prepullAtOrTime\": false,\n            \"tradelineSort\": \"NO_SORT\",\n            \"populateAccountNumbers\": false,\n            \"populateBureauFlags\": false,\n            \"populateLateDates\": true,\n            \"populateScoreReasonCodes\": true,\n            \"populateSocialSecurity\": false,\n            \"openAmexPaymentPercent\": 5,\n            \"requireTenantScorecard\": false\n        }\n    ]\n}"},{"id":"578fe36c-40a3-4fb4-b776-fccad9c1b466","name":"Recurring","originalRequest":{"method":"GET","header":[{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"{{jwt-token}}","type":"text"}],"url":{"raw":"https://{{host}}/v1/admin/product/{{product-guid}}/searches?recurring=true","protocol":"https","host":["{{host}}"],"path":["v1","admin","product","{{product-guid}}","searches"],"query":[{"key":"searchType","value":"CREDIT_REPORT","description":"Optional filter by search type","disabled":true},{"key":"recurring","value":"true","description":"to return recurring data instead"}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"productGuid\": \"14b41ff8-bd3d-4822-98ee-4219de59ed08\",\n    \"searchDetails\": [\n        {\n            \"searchType\": \"SOCIAL_MEDIA\",\n            \"orderingOption\": \"REQUIRED\",\n            \"searchPrice\": 15.0,\n            \"searchNotes\": \"This is the recurring search notes.\",\n            \"noAccountsGoPendingReview\": true,\n            \"overrideVendorRouting\": false\n        }\n    ]\n}"}],"_postman_id":"e8f5bd24-419f-4e42-9572-333840febeb2"}],"id":"619ab5ba-a9bd-40ce-b73d-c3bc265004e8","description":"<p>Endpoints for administrative data related to products.</p>\n","_postman_id":"619ab5ba-a9bd-40ce-b73d-c3bc265004e8","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}}},{"name":"Monitoring","item":[{"name":"All Monitoring","id":"8e3313d3-f404-4780-a5de-2ca6fb795ed1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}"}],"url":"https://{{host}}/v1/recheck/monitoring?page=0&size=30&searchType=NATIONAL_CRIMINAL_DATABASE&statuses=ACTIVE, PENDING&reportToClientGuid=c2d719b0-35ef-46fe-8413-967e436b9f82&orderedStartDate=2026-07-20&orderedEndDate=2026-08-01&lastRunStartDate=2026-04-22&lastRunEndDate=2026-04-30&expiresStartDate=2026-08-01&expiresEndDate=2026-09-28","description":"<p><strong>CRA API</strong></p>\n<p>Retrieve a summary list of all Recheck Monitoring Queue records.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","recheck","monitoring"],"host":["{{host}}"],"query":[{"description":{"content":"<p>Specify the page to retrieve. Defaults to 0.</p>\n","type":"text/plain"},"key":"page","value":"0"},{"description":{"content":"<p>Specify the number of records per page. Defaults to 30.</p>\n","type":"text/plain"},"key":"size","value":"30"},{"description":{"content":"<p>(optional) Filter by search type.</p>\n","type":"text/plain"},"key":"searchType","value":"NATIONAL_CRIMINAL_DATABASE"},{"description":{"content":"<p>(optional) Filter by list of monitoring statuses.</p>\n","type":"text/plain"},"key":"statuses","value":"ACTIVE, PENDING"},{"description":{"content":"<p>(optional) Filter by report to client.</p>\n","type":"text/plain"},"key":"reportToClientGuid","value":"c2d719b0-35ef-46fe-8413-967e436b9f82"},{"description":{"content":"<p>(optional) yyyy-MM-dd filter by earliest date ordered.</p>\n","type":"text/plain"},"key":"orderedStartDate","value":"2026-07-20"},{"description":{"content":"<p>(optional) yyyy-MM-dd filter by latest date ordered.</p>\n","type":"text/plain"},"key":"orderedEndDate","value":"2026-08-01"},{"description":{"content":"<p>(optional) yyyy-MM-dd filter by earliest last run date.</p>\n","type":"text/plain"},"key":"lastRunStartDate","value":"2026-04-22"},{"description":{"content":"<p>(optional) yyyy-MM-dd filter by latest last run date.</p>\n","type":"text/plain"},"key":"lastRunEndDate","value":"2026-04-30"},{"description":{"content":"<p>(optional) yyyy-MM-dd filter by earliest expired date.</p>\n","type":"text/plain"},"key":"expiresStartDate","value":"2026-08-01"},{"description":{"content":"<p>(optional) yyyy-MM-dd filter by latest expired date.</p>\n","type":"text/plain"},"key":"expiresEndDate","value":"2026-09-28"}],"variable":[]}},"response":[{"id":"01a0b98a-006c-4e50-acff-802b47d39f5c","name":"All Monitoring","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}"}],"url":{"raw":"https://{{host}}/v1/recheck/monitoring?page=0&size=30&searchType=NATIONAL_CRIMINAL_DATABASE&statuses=ACTIVE, PENDING","protocol":"https","host":["{{host}}"],"path":["v1","recheck","monitoring"],"query":[{"key":"page","value":"0","description":"Specify the page to retrieve. Defaults to 0."},{"key":"size","value":"30","description":"Specify the number of records per page. Defaults to 30."},{"key":"searchType","value":"NATIONAL_CRIMINAL_DATABASE","description":"(optional) Filter by search type."},{"key":"statuses","value":"ACTIVE, PENDING","description":"(optional) Filter by list of monitoring statuses."},{"key":"reportToClientGuid","value":"c2d719b0-35ef-46fe-8413-967e436b9f82","description":"(optional) Filter by report to client.","disabled":true},{"key":"orderedStartDate","value":"2026-07-20","description":"(optional) yyyy-MM-dd filter by earliest date ordered.","disabled":true},{"key":"orderedEndDate","value":"2026-08-01","description":"(optional) yyyy-MM-dd filter by latest date ordered.","disabled":true},{"key":"lastRunStartDate","value":"2026-04-22","description":"(optional) yyyy-MM-dd filter by earliest last run date.","disabled":true},{"key":"lastRunEndDate","value":"2026-04-30","description":"(optional) yyyy-MM-dd filter by latest last run date.","disabled":true},{"key":"expiresStartDate","value":"2026-08-01","description":"(optional) yyyy-MM-dd filter by earliest expired date.","disabled":true},{"key":"expiresEndDate","value":"2026-09-28","description":"(optional) yyyy-MM-dd filter by latest expired date.","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"monitoringGuid\": \"2b3162db-b18c-458d-872e-e81a45f17004\",\n        \"fullName\": \"PUDDLE, BROWN\",\n        \"reportToClientGuid\": \"c2d719b0-35ef-46fe-8413-927e436b9f82\",\n        \"reportToClientName\": \"Almond Brothers\",\n        \"searchType\": \"NATIONAL_CRIMINAL_DATABASE\",\n        \"searchName\": \"National Criminal Database Search\",\n        \"status\": \"ACTIVE\",\n        \"lastRunDate\": null,\n        \"orderedDate\": 1776199121000,\n        \"expiresDate\": 1688501616000,\n        \"canRenew\": false,\n        \"canCancel\": true\n    },\n    {\n        \"monitoringGuid\": \"ccd8298a-68d7-41f4-85ff-be08f27a8763\",\n        \"fullName\": \"WALNUT, ROUND\",\n        \"reportToClientGuid\": \"f7fecbf3-cdd7-4374-9c6b-9cb947b1d975\",\n        \"reportToClientName\": \"Just In Time Property\",\n        \"searchType\": \"NATIONAL_CRIMINAL_DATABASE\",\n        \"searchName\": \"National Criminal Database Search\",\n        \"status\": \"ACTIVE\",\n        \"lastRunDate\": null,\n        \"orderedDate\": 1776888031000,\n        \"expiresDate\": 1688505216000,\n        \"canRenew\": false,\n        \"canCancel\": true\n    },\n    {\n        \"monitoringGuid\": \"e7d81447-3d2f-42ae-b81e-0d9f205a4179\",\n        \"fullName\": \"BROWN, LENNIE\",\n        \"reportToClientGuid\": \"4cfe5238-7fc9-4001-808e-dcc6b0322fca\",\n        \"reportToClientName\": \"Down South Investigators\",\n        \"searchType\": \"NATIONAL_CRIMINAL_DATABASE\",\n        \"searchName\": \"National Criminal Database Search\",\n        \"status\": \"ACTIVE\",\n        \"lastRunDate\": null,\n        \"orderedDate\": 1776893382000,\n        \"expiresDate\": 1688505216000,\n        \"canRenew\": false,\n        \"canCancel\": true\n    }\n]"}],"_postman_id":"8e3313d3-f404-4780-a5de-2ca6fb795ed1"},{"name":"Monitoring Detail","id":"9e2d228d-8f88-4863-94c0-cbee0ba8d00b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}"}],"url":"https://{{host}}/v1/recheck/monitoring/{{monitoring-guid}}","description":"<p><strong>CRA API</strong></p>\n<p>Retrieve details about a Recheck Monitoring Queue record.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","recheck","monitoring","{{monitoring-guid}}"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"8fd4a013-3414-4434-8f0b-047484852045","name":"Monitoring Detail","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}"}],"url":"https://{{host}}/v1/recheck/monitoring/{{monitoring-guid}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"monitoringGuid\": \"185fc591-fd15-4d9f-b680-773o2098afbc\",\n    \"fullName\": \"FUNNEL, KAREN\",\n    \"reportToClientGuid\": \"4cfe5238-7fc9-4001-808e-ycc6b0322fca\",\n    \"reportToClientName\": \"Down South Investigators\",\n    \"searchType\": \"NATIONAL_CRIMINAL_DATABASE_ALIAS\",\n    \"searchName\": \"National Criminal Database Alias Search\",\n    \"status\": \"ACTIVE\",\n    \"lastRunDate\": null,\n    \"orderedDate\": 1776291067000,\n    \"expiresDate\": 1688505216000,\n    \"canRenew\": false,\n    \"canCancel\": true,\n    \"originalFileNumber\": 1127,\n    \"subscriptionId\": \"_RT65qMH5A7rt16\",\n    \"monitoringHistory\": [\n        {\n            \"action\": \"RENEWED\",\n            \"date\": 1776889197000,\n            \"details\": \"Renewed Monitoring; $10.00\",\n            \"addedCount\": 0,\n            \"removedCount\": 0,\n            \"updatedCount\": 0\n        },\n        {\n            \"action\": \"CANCELLED\",\n            \"date\": 1776459628000,\n            \"details\": \"Monitoring Cancelled\",\n            \"addedCount\": 0,\n            \"removedCount\": 0,\n            \"updatedCount\": 0\n        },\n        {\n            \"action\": \"ADDED\",\n            \"date\": 1776291068000,\n            \"details\": \"File #1127; $10.00\",\n            \"addedCount\": 0,\n            \"removedCount\": 0,\n            \"updatedCount\": 0\n        }\n    ]\n}"}],"_postman_id":"9e2d228d-8f88-4863-94c0-cbee0ba8d00b"},{"name":"Cancel Monitoring","id":"f30e4c62-d550-4913-8d92-26b61827a0f1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}"}],"url":"https://{{host}}/v1/recheck/monitoring/{{monitoring-guid}}","description":"<p><strong>CRA API</strong></p>\n<p>Cancel a Recheck Monitoring Queue record.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","recheck","monitoring","{{monitoring-guid}}"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"13f2cfb0-ae8f-42de-bfaa-eda761367cf5","name":"Cancel Monitoring","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}"}],"url":"https://{{host}}/v1/recheck/monitoring/{{monitoring-guid}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"\"Monitoring record has been cancelled.\""}],"_postman_id":"f30e4c62-d550-4913-8d92-26b61827a0f1"},{"name":"Renew Monitoring","id":"f2f01a37-944f-4008-97a6-e98ef90b23e6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}"}],"url":"https://{{host}}/v1/recheck/monitoring/{{monitoring-guid}}/renew","description":"<p><strong>CRA API</strong></p>\n<p>Renew a Recheck Monitoring Queue record.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","recheck","monitoring","{{monitoring-guid}}","renew"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"e8490696-b2b6-49cd-b50e-518964ccacaf","name":"Renew Monitoring","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}"}],"url":"https://{{host}}/v1/recheck/monitoring/{{monitoring-guid}}/renew"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"\"Monitoring record has been renewed.\""}],"_postman_id":"f2f01a37-944f-4008-97a6-e98ef90b23e6"}],"id":"03fae70c-a356-4777-b568-778f04671251","description":"<p>Endpoints for working with Recheck Monitoring Queue records.</p>\n","_postman_id":"03fae70c-a356-4777-b568-778f04671251","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}}},{"name":"All Tags","id":"b3f0d79f-307f-4cf7-a374-609f6993f9d0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{host}}/v1/admin/tags","description":"<p><strong>CRA API</strong></p>\n<p>Retrieve a list of tags that are available for reports and searches. </p>\n<p>You can filter the list down to the specific type of tag by providing the <code>type</code> parameter.  Valid types are REPORT and SEARCH.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","admin","tags"],"host":["{{host}}"],"query":[{"disabled":true,"description":{"content":"<p>Specify the page to retrieve.  Defaults to 0.</p>\n","type":"text/plain"},"key":"page","value":"0"},{"disabled":true,"description":{"content":"<p>Specify the number of records per page.  Defaults to 30.</p>\n","type":"text/plain"},"key":"size","value":"30"},{"disabled":true,"description":{"content":"<p>Optional: Tag type. REPORT or SEARCH.</p>\n","type":"text/plain"},"key":"type","value":"REPORT"}],"variable":[]}},"response":[{"id":"25b65b53-7787-4b4c-943e-8305188857eb","name":"All Tags","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"url":{"raw":"https://{{host}}/v1/admin/tags","protocol":"https","host":["{{host}}"],"path":["v1","admin","tags"],"query":[{"key":"page","value":"0","description":"Specify the page to retrieve.  Defaults to 0.","type":"text","disabled":true},{"key":"size","value":"30","description":"Specify the number of records per page.  Defaults to 30.","type":"text","disabled":true},{"key":"type","value":"REPORT","description":"Optional: Tag type. REPORT or SEARCH.","type":"text","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"[\n    {\n        \"tagGuid\": \"4e788afa-a798-11ef-8718-b7b04b6a31b7\",\n        \"name\": \"Court Delays\",\n        \"description\": \"There have been court delays\",\n        \"type\": \"SEARCH\",\n        \"clientViewable\": false\n    },\n    {\n        \"tagGuid\": \"12d904b0-16ad-413f-9cec-d66b4ca89f65\",\n        \"name\": \"Important\",\n        \"type\": \"REPORT\",\n        \"clientViewable\": true\n    },\n    {\n        \"tagGuid\": \"4e786a3e-a798-11ef-8718-b7b04b6a31b7\",\n        \"name\": \"Rush\",\n        \"description\": \"High priority\",\n        \"type\": \"REPORT\",\n        \"clientViewable\": false\n    },\n    {\n        \"tagGuid\": \"4e78aa26-a798-11ef-8718-b7b04b6a31b7\",\n        \"name\": \"Second Call\",\n        \"type\": \"SEARCH\",\n        \"clientViewable\": false\n    }\n]"}],"_postman_id":"b3f0d79f-307f-4cf7-a374-609f6993f9d0"},{"name":"Assign Tag","id":"fa1b7ed4-f623-4aee-a062-b1e159502693","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"clientGuid\": \"client-guid\",\n    \"tagGuid\": \"tag-guid\",\n    \"orderGuid\": \"order-guid\",\n    \"orderSearchGuid\": \"order-search-guid\"\n}","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/admin/tags/associate","description":"<p><strong>CRA API</strong></p>\n<p>Associate a tag with either a report or a search on the report.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>clientGuid</strong> <em>required, uuid</em></td>\n<td>Unique identifier for the client the report belongs to.</td>\n</tr>\n<tr>\n<td><strong>tagGuid</strong> <em>required, uuid</em></td>\n<td>Unique identifier for the tag.</td>\n</tr>\n<tr>\n<td><strong>orderGuid</strong> <em>required, uuid</em></td>\n<td>Unique identifier for report (order).</td>\n</tr>\n<tr>\n<td><strong>orderSearchGuid</strong> <em>uuid</em></td>\n<td>If assigning the tag to a search, populate this with the identifier for the search.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","admin","tags","associate"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"098874d5-60e4-4eb4-bd7e-888284a4e3a4","name":"Assign Report Tag","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"clientGuid\": \"c2d719b0-35ef-46fe-8413-927e436b9f82\",\n    \"tagGuid\": \"12d904b0-16ad-413f-9cec-d66b4ca89f65\",\n    \"orderGuid\": \"3820017b-b6ff-494f-b39c-f5da1901895d\"\n}","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/admin/tags/associate"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"clientGuid\": \"c2d719b0-35ef-46fe-8413-927e436b9f82\",\n    \"orderGuid\": \"3820017b-b6ff-494f-b39c-f5da1901895d\",\n    \"fileNumber\": 1832,\n    \"assignedTags\": [\n        {\n            \"tagGuid\": \"4e7829a2-a798-11ef-8718-b7b04b6a31b7\",\n            \"name\": \"Dispute\"\n        },\n        {\n            \"tagGuid\": \"12d904b0-16ad-413f-9cec-d66b4ca89f65\",\n            \"name\": \"Important\"\n        }\n    ]\n}"},{"id":"4b5ca3ca-6112-4afc-99e0-082cb5d9bc51","name":"Assign Search Tag","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"clientGuid\": \"c2d719b0-35ef-46fe-8413-927e436b9f82\",\n    \"tagGuid\": \"4e78aa26-a798-11ef-8718-b7b04b6a31b7\",\n    \"orderGuid\": \"3820017b-b6ff-494f-b39c-f5da1901895d\",\n    \"orderSearchGuid\": \"adee60df-3b44-4af4-b5fb-f88605cd829f\"\n}","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/admin/tags/associate"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"clientGuid\": \"c2d719b0-35ef-46fe-8413-927e436b9f82\",\n    \"orderGuid\": \"3820017b-b6ff-494f-b39c-f5da1901895d\",\n    \"fileNumber\": 1832,\n    \"orderSearchGuid\": \"adee60df-3b44-4af4-b5fb-f88605cd829f\",\n    \"assignedTags\": [\n        {\n            \"tagGuid\": \"4e789ab8-a798-11ef-8718-b7b04b6a31b7\",\n            \"name\": \"First Call\"\n        },\n        {\n            \"tagGuid\": \"4e78aa26-a798-11ef-8718-b7b04b6a31b7\",\n            \"name\": \"Second Call\"\n        }\n    ]\n}"},{"id":"928fcbf2-355f-4653-a480-88bc31aa06ce","name":"Wrong Tag Type","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"clientGuid\": \"c2d719b0-35ef-46fe-8413-927e436b9f82\",\n    \"tagGuid\": \"12d904b0-16ad-413f-9cec-d66b4ca89f65\",\n    \"orderGuid\": \"3820017b-b6ff-494f-b39c-f5da1901895d\",\n    \"orderSearchGuid\": \"adee60df-3b44-4af4-b5fb-f88605cd829f\"\n}","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/admin/tags/associate"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": \"VALIDATION_EXCEPTION\",\n    \"message\": \"The tag provided is of type [REPORT] but expected type is [SEARCH].\"\n}"}],"_postman_id":"fa1b7ed4-f623-4aee-a062-b1e159502693"},{"name":"Remove Tag","id":"703ce496-aac9-44d3-ad5a-b3e89072dd8f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"clientGuid\": \"client-guid\",\n    \"tagGuid\": \"tag-guid\",\n    \"orderGuid\": \"order-guid\",\n    \"orderSearchGuid\": \"order-search-guid\"\n}","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/admin/tags/associate","description":"<p><strong>CRA API</strong></p>\n<p>Associate a tag with either a report or a search on the report.  </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>clientGuid</strong> <em>required, uuid</em></td>\n<td>Unique identifier for the client the report belongs to.</td>\n</tr>\n<tr>\n<td><strong>tagGuid</strong> <em>required, uuid</em></td>\n<td>Unique identifier for the tag.</td>\n</tr>\n<tr>\n<td><strong>orderGuid</strong> <em>required, uuid</em></td>\n<td>Unique identifier for report (order).</td>\n</tr>\n<tr>\n<td><strong>orderSearchGuid</strong> <em>uuid</em></td>\n<td>If assigning the tag to a search, populate this with the identifier for the search.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","admin","tags","associate"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"503e64b9-ead5-4222-adba-095f8cb73cdc","name":"Assign Report Tag","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"clientGuid\": \"c2d719b0-35ef-46fe-8413-927e436b9f82\",\n    \"tagGuid\": \"4e7829a2-a798-11ef-8718-b7b04b6a31b7\",\n    \"orderGuid\": \"3820017b-b6ff-494f-b39c-f5da1901895d\"\n}","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/admin/tags/associate"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"clientGuid\": \"c2d719b0-35ef-46fe-8413-927e436b9f82\",\n    \"orderGuid\": \"3820017b-b6ff-494f-b39c-f5da1901895d\",\n    \"fileNumber\": 1832,\n    \"assignedTags\": [\n        {\n            \"tagGuid\": \"12d904b0-16ad-413f-9cec-d66b4ca89f65\",\n            \"name\": \"Important\"\n        }\n    ]\n}"},{"id":"8a48e565-3056-43aa-b6e5-1ecb31b388bc","name":"Remove Search Tag","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{jwt-token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"clientGuid\": \"c2d719b0-35ef-46fe-8413-927e436b9f82\",\n    \"tagGuid\": \"4e789ab8-a798-11ef-8718-b7b04b6a31b7\",\n    \"orderGuid\": \"3820017b-b6ff-494f-b39c-f5da1901895d\",\n    \"orderSearchGuid\": \"adee60df-3b44-4af4-b5fb-f88605cd829f\"\n}","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/v1/admin/tags/associate"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"clientGuid\": \"c2d719b0-35ef-46fe-8413-927e436b9f82\",\n    \"orderGuid\": \"3820017b-b6ff-494f-b39c-f5da1901895d\",\n    \"fileNumber\": 1832,\n    \"orderSearchGuid\": \"adee60df-3b44-4af4-b5fb-f88605cd829f\",\n    \"assignedTags\": [\n        {\n            \"tagGuid\": \"4e78aa26-a798-11ef-8718-b7b04b6a31b7\",\n            \"name\": \"Second Call\"\n        }\n    ]\n}"}],"_postman_id":"703ce496-aac9-44d3-ad5a-b3e89072dd8f"}],"id":"cb1010dc-4ae0-4fc4-bbb9-272038e1ce27","description":"<p>Endpoints related to administrative information.</p>\n","_postman_id":"cb1010dc-4ae0-4fc4-bbb9-272038e1ce27","auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"},"isInherited":true,"source":{"_postman_id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","id":"f2cd52d2-1c85-4381-a3d6-508a97d6ba43","name":"TazAPI Advanced","type":"collection"}}}],"auth":{"type":"bearer","bearer":{"token":"{{jwt-token}}"}},"event":[{"listen":"prerequest","script":{"id":"07a9b6d9-e9ad-463b-886e-9ffad4c26449","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"98475cb6-3a50-49cd-9735-dfa8ebc98e3c","type":"text/javascript","exec":[""]}}]}